- Moved property $htmlParameters from HTMLWidget to DropdownWidget

- Moved all the UDF related code from UDFWidget to UDFLib
- UDFWidget is now using UDFLib
This commit is contained in:
Paolo
2017-08-17 16:33:45 +02:00
parent 35a4861abf
commit 1a2fce8d1c
4 changed files with 457 additions and 441 deletions
-5
View File
@@ -27,9 +27,6 @@ class HTMLWidget extends Widget
const MIN_LENGTH = 'min-length';
const PLACEHOLDER = 'placeholder';
// Alias of $this->_args[HTMLWidget::HTML_ARG_NAME] for a better code readability
protected $htmlParameters;
/**
* It gets also the htmlArgs array as parameter, it will be used to set the HTML properties
*/
@@ -64,8 +61,6 @@ class HTMLWidget extends Widget
$this->_args[HTMLWidget::HTML_ARG_NAME][$argName] = $argValue;
}
}
$this->htmlParameters =& $this->_args[HTMLWidget::HTML_ARG_NAME]; // Reference for a better code readability
}
/**