Skip to content
Snippets Groups Projects
Select Git revision
  • 47e8eac35b68cd5b62a3a3f763580a2e2a3dfe48
  • master default protected
  • bugfix/wordpress-review
  • fix/duplicate
  • bugfix/get_current_screen_fail
  • feature/dismiss-nonce
  • replace-dodgy-path
  • bugfix/notice-not-show
  • devel
  • 3.3.0
  • 3.2.5
  • 3.2.4
  • 3.2.3
  • 3.2.2
  • 3.2.1
  • 3.2.0
  • 3.2.0-beta7
  • 3.2.0-beta6
  • 3.2.0-beta5
  • 3.2.0-beta4
  • 3.2.0-beta3
  • 3.2.0-beta2
  • 3.2.0-beta1
  • 3.1.4
  • 3.1.4-beta1
  • 3.1.3
  • 3.1.1
  • 3.1
  • 3.0
29 results

TestFunctions.php

Blame
  • SubmitField.php 294 B
    <?php
    
    namespace WPDesk\Forms\Field;
    
    class SubmitField extends NoValueField {
    
    	public function get_template_name(): string {
    		return 'input-submit';
    	}
    
    	public function get_type(): string {
    		return 'submit';
    	}
    
    	public function should_override_form_template(): bool {
    		return true;
    	}
    }