Server IP : 192.158.238.246 / Your IP : 3.142.135.246 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/4082427/root/home/jenniferflocom/www/wp-content/plugins/give/src/FormAPI/Form/ |
Upload File : |
<?php namespace Give\FormAPI\Form; use Give\Framework\Exceptions\Primitives\InvalidArgumentException; abstract class Field { /** * Field id * * @since 2.7.0 * @var string */ public $id; /** * Field name * * @since 2.7.0 * @var string */ public $name; /** * Field description * * @since 2.7.0 * @var string */ public $desc = ''; /** * Field type * * @since 2.7.0 * @var string */ public $type; /** * Field style * * @since 2.7.0 * @var string */ public $style = ''; /** * Field wrapper class. * * @since 2.7.0 * @var string */ public $wrapperClass = ''; /** * Field value. * * @since 2.7.0 * @var string */ public $value = null; /** * Field default value. * * @since 2.7.0 * @var string */ public $defaultValue = null; /** * Field attributes. * * @since 2.7.0 * @var string */ public $attributes = []; final public function __construct() { } /** * Parse field arguments * * @since 2.7.0 * * @param array $array * * @return mixed */ public function parse($array) { $this->id = $array['id']; $this->name = $array['name']; $this->type = $array['type']; $this->desc = isset($array['desc']) ? $array['desc'] : ''; $this->style = isset($array['style']) ? $array['style'] : ''; $this->wrapperClass = isset($array['wrapper_class']) ? $array['wrapper_class'] : ''; $this->defaultValue = isset($array['default']) ? $array['default'] : null; $this->value = isset($array['value']) ? $array['value'] : null; $this->attributes = isset($array['attributes']) ? $array['attributes'] : []; } /** * Get Field object. * * @since 2.7.0 * * @param array $array * * @return static */ public static function fromArray($array) { $field = new static(); $field->validate($array); $field->parse($array); return $field; } /** * Validate field arguments * * @since 2.7.0 * * @param $array */ public function validate($array) { $required = ['id', 'name', 'type']; $array = array_filter($array); // Remove empty values. if (array_diff($required, array_keys($array))) { throw new InvalidArgumentException( __('To create a TextField object, please provide valid id, name and type.', 'give') ); } } /** * Convert field object to array. * * @since 2.7.0 * @return array */ public function toArray() { return [ 'id' => $this->id, 'name' => $this->name, 'type' => $this->type, 'desc' => $this->desc, 'style' => $this->style, 'wrapper_class' => $this->wrapperClass, 'value' => $this->value, 'default' => $this->defaultValue, 'attributes' => $this->attributes, ]; } }