Example #1
1
 public function __construct()
 {
     parent::__construct();
     $this->_nicename = __('Recaptcha', 'ninja-forms');
     $this->_settings['wrapper_class '] = array('name' => 'wrapper_class', 'type' => 'textbox', 'placeholder' => '', 'label' => __('Wrapper', 'ninja-forms'), 'width' => 'full', 'value' => '', 'group' => 'primary', 'use_merge_tags' => FALSE, 'help' => __('Adds an extra class to your field wrapper.', 'ninja-forms'));
     add_filter('nf_sub_hidden_field_types', array($this, 'hide_field_type'));
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $this->_settings['label']['width'] = 'full';
     $this->_nicename = __('Button', 'ninja-forms');
 }
Example #3
0
 public function get_parent_type()
 {
     return parent::get_type();
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->_nicename = __('File', 'ninja-forms');
 }
 public function __construct()
 {
     parent::__construct();
     $this->_nicename = __('Recaptcha', 'ninja-forms');
     add_filter('nf_sub_hidden_field_types', array($this, 'hide_field_type'));
 }
Example #6
0
 public function __construct()
 {
     parent::__construct();
     add_filter('ninja_forms_custom_columns', array($this, 'custom_columns'), 10, 2);
     add_filter('ninja_forms_render_options', array($this, 'query_string_default'), 10, 2);
 }