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 SNP_NHP_Options 1.0 */ function __construct($field, $value, $current) { parent::__construct(); $this->field = $field; $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 SNP_NHP_Options 1.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.', 'nhp-opts'); $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 SNP_NHP_Options 1.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.', 'nhp-opts'); $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 SNP_NHP_Options 1.0.1 */ 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.', 'nhp-opts'); $this->value = $value; $this->current = $current; $this->validate(); }