/**
  * Field Constructor.
  *
  * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
  *
  * @since Redux_Options 1.0.0
  */
 function __construct($field = array(), $value = '', $parent)
 {
     parent::__construct($parent->sections, $parent->args, $parent->extra_tabs);
     $this->field = $field;
     $this->value = $value;
     //$this->render();
 }
 /**
  * Field Constructor.
  *
  * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
  *
  * @since Redux_Options 1.0.0
  */
 function __construct($field, $value, $current)
 {
     parent::__construct();
     $this->field = $field;
     $this->value = $value;
     $this->current = $current;
     $this->validate();
 }
示例#3
0
 function __construct($field, $value, $current)
 {
     parent::__construct();
     $this->field = $field;
     $this->field['msg'] = isset($this->field['msg']) ? $this->field['msg'] : __('This field must be a valid color value.', Redux_TEXT_DOMAIN);
     $this->value = $value;
     $this->current = $current;
     $this->validate();
 }
 /**
  * Field Constructor.
  *
  * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
  *
  * @since Redux_Options 1.0.0
  */
 function __construct($field, $value, $current)
 {
     parent::__construct();
     $this->field = $field;
     $this->field['msg'] = isset($this->field['msg']) ? $this->field['msg'] : __('You must not enter any special characters in this field, all special characters have been removed.', Redux_TEXT_DOMAIN);
     $this->value = $value;
     $this->current = $current;
     $this->validate();
 }
 /**
  * Field Constructor.
  *
  * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
  *
  * @since Redux_Options 1.0.0
  */
 function __construct($field, $value, $current)
 {
     parent::__construct();
     $this->field = $field;
     $this->field['msg'] = isset($this->field['msg']) ? $this->field['msg'] : __('You must provide a numerical value for this option.', AZ_THEME_NAME);
     $this->value = $value;
     $this->current = $current;
     $this->validate();
 }
示例#6
0
 function __construct($field, $value, $current)
 {
     parent::__construct();
     $this->field = $field;
     $this->field['msg'] = isset($this->field['msg']) ? $this->field['msg'] : __('You must provide a valid URL for this option.', Redux_TEXT_DOMAIN);
     $this->value = $value;
     $this->current = $current;
     $this->validate();
 }
示例#7
0
 /**
  * Field Constructor.
  * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
  * @since Redux_Options 1.0.0
  */
 function __construct($field = array(), $value = '', $parent)
 {
     parent::__construct($parent->sections, $parent->args, $parent->extra_tabs);
     $this->field = $field;
     $this->value = $value;
     if (!is_array($this->value) && isset($this->field['options'])) {
         $this->value = $this->field['options'];
     }
 }
示例#8
0
 /**
  * Field Constructor.
  *
  * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
  *
  * @since Redux_Options 1.0.0
  */
 function __construct($field, $value, $current)
 {
     parent::__construct();
     $this->field = $field;
     $this->field['msg'] = isset($this->field['msg']) ? $this->field['msg'] : __('This field must be a valid color value.', AZ_THEME_NAME);
     $this->value = $value;
     $this->current = $current;
     $this->validate();
 }
 function __construct($field, $value, $current)
 {
     parent::__construct();
     $this->field = $field;
     $this->field['msg'] = isset($this->field['msg']) ? $this->field['msg'] : __('You must provide a comma seperated list of numerical values for this option.', Redux_TEXT_DOMAIN);
     $this->value = $value;
     $this->current = $current;
     $this->validate();
 }
示例#10
0
 /**
  * Field Constructor.
  *
  * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
  *
  * @since Redux_Options 1.0.0
  */
 function __construct($field, $value, $current)
 {
     parent::__construct();
     $this->field = $field;
     $this->field['msg'] = isset($this->field['msg']) ? $this->field['msg'] : __('You must not enter any HTML in this field, all HTML tags have been removed.', AZ_THEME_NAME);
     $this->value = $value;
     $this->current = $current;
     $this->validate();
 }
示例#11
0
 /**
  * Field Constructor.
  *
  * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
  *
  * @since NHP_Options 1.0
  */
 function __construct($field = array(), $value = '', $parent)
 {
     parent::__construct($parent->sections, $parent->args, $parent->extra_tabs);
     $this->field = $field;
     $this->value = $value;
     $this->field['fonts'] = array();
     $fonts = get_transient('nhp-opts-google-webfonts');
     if (!is_array(json_decode($fonts))) {
         $fonts = @file_get_contents(NHP_OPTIONS_DIR . 'fields/element_font/fonts.json');
         set_transient('nhp-opts-google-webfonts', $fonts, 60 * 60 * 24);
     }
     $this->field['fonts'] = json_decode($fonts);
     $this->field['size'] = array(9, 30);
     $this->field['style'] = array('normal' => 'Normal', 'italic' => 'Italic', 'bold' => "Bold", 'italic_bold' => 'Italic Bold');
 }
 function _default_values()
 {
     return $this->redux->_default_values();
 }