Skip to content
Snippets Groups Projects
Select Git revision
  • 10e0ce5a0b75b1548ef1bc275540bde49da851bf
  • master default protected
  • bugfix/vendor-excluded
  • feature/phpcs-editorconfig
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.8
  • 1.2.7
  • 1.2.6
  • 1.2.5
  • 1.2.4
  • 1.2.3
  • 1.2.2
  • 1.2.1
  • 1.2.0
  • 1.1.0
  • 1.1.0-beta1
  • 1.0.1
  • 1.0.0
  • 1.0.0-beta8
  • 1.0.0-beta7
  • 1.0.0-beta6
  • 1.0.0-beta5
24 results

phpcs.xml.dist

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;
    	}
    }