diff options
Diffstat (limited to 'main/app/sprinkles/FormGenerator/src/Element/BaseInput.php')
-rw-r--r-- | main/app/sprinkles/FormGenerator/src/Element/BaseInput.php | 111 |
1 files changed, 0 insertions, 111 deletions
diff --git a/main/app/sprinkles/FormGenerator/src/Element/BaseInput.php b/main/app/sprinkles/FormGenerator/src/Element/BaseInput.php deleted file mode 100644 index cf78dc6..0000000 --- a/main/app/sprinkles/FormGenerator/src/Element/BaseInput.php +++ /dev/null @@ -1,111 +0,0 @@ -<?php -/** - * UF Form Generator - * - * @link https://github.com/lcharette/UF_FormGenerator - * @copyright Copyright (c) 2017 Louis Charette - * @license https://github.com/lcharette/UF_FormGenerator/blob/master/LICENSE (MIT License) - */ - -namespace UserFrosting\Sprinkle\FormGenerator\Element; - -use UserFrosting\Sprinkle\FormGenerator\Element\InputInterface; -use UserFrosting\Sprinkle\Core\Facades\Translator; -use UserFrosting\Sprinkle\Core\Facades\Debug; - -/** - * BaseInput class. - * - * Parse the schema data for a form input element to add the default - * attributes values and transform other attributes. - * @abstract - * @implements InputInterface - */ -abstract class BaseInput implements InputInterface -{ - - /** - * @var String The name of the input. - */ - var $name; - - /** - * @var object The input schema data. - */ - var $element; - - /** - * @var String The input value. - */ - var $value; - - /** - * Constructor. - * - * @access public - * @param String $name - * @param object $element - * @param mixed $value (default: null) - * @return void - */ - public function __construct($name, $element, $value = NULL) { - $this->name = $name; - $this->element = $element; - $this->value = $value; - } - - /** - * parse function. - * - * Return the parsed input attributes - * @access public - * @return void - */ - public function parse() { - $this->applyTransformations(); - return $this->element; - } - - /** - * translateArgValue function. - * - * Translate the value of passed argument using the Translator Facade - * @access public - * @param String $argument - * @return void - */ - public function translateArgValue($argument) { - if (isset($this->element[$argument])) { - $this->element[$argument] = Translator::translate($this->element[$argument]); - } - } - - /** - * getValue function. - * - * Return the value of the current input element. If not value is set in - * `$this->value`, return the default value (from the schema data), if any. - * @access public - * @return string The input current value - */ - public function getValue() { - if (isset($this->value) && $this->value !== NULL) { - return $this->value; - } else if (isset($this->element['default'])) { - return $this->element['default']; - } else { - return ""; - } - } - - /** - * applyTransformations function. - * - * Add defaut attributes to the current input element. Also transform - * attributes values passed from the schema - * @access protected - * @abstract - * @return void - */ - abstract protected function applyTransformations(); -} |