X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FFormElement.class.php;h=0443e6c9ac84306f18f8e6891241c2a53a09f4a2;hb=ed41335d63e71a11d30e92f4367106e9398adf9d;hp=f3d26a4d27db4530d307263ac9adb3da2b171526;hpb=a4d1c5627c3958245ea7e2e573267e34f5872471;p=timetracker.git diff --git a/WEB-INF/lib/form/FormElement.class.php b/WEB-INF/lib/form/FormElement.class.php index f3d26a4d..0443e6c9 100644 --- a/WEB-INF/lib/form/FormElement.class.php +++ b/WEB-INF/lib/form/FormElement.class.php @@ -39,13 +39,16 @@ class FormElement { var $label = ''; // Optional label for control. var $style = ''; // Control style. var $enabled = true; // Whether the control is enabled. - var $class = 'FormElement'; // Class name for the element. + var $class = 'FormElement'; // PHP class name for the element. + var $cssClass = null; // CSS class name for the element. function __construct() { } function getName() { return $this->name; } function getClass() { return $this->class; } + function getCssClass() { return $this->cssClass; } + function setCssClass($cssClass) { $this->cssClass = $cssClass; } function setFormName($name) { $this->form_name = $name; } function getFormName() { return $this->form_name; } @@ -81,33 +84,18 @@ class FormElement { function setOnChange($str) { $this->on_change = $str; } function setOnClick($str) { $this->on_click = $str; } - function localize($i18n) {} // Localization occurs in derived classes and is dependent on control type. - // For example, in calendar control we need to localize day and month names. + function localize() {} // Localization occurs in derived classes and is dependent on control type. + // For example, in calendar control we need to localize day and month names. - // TODO: refactoring ongoing down from here. + // getHtml returns HTML for the element. + function getHtml() { return ''; } + // getLabelHtml returns HTML code for element label. + function getLabelHtml() { return ''; } - - - - - - - - - function toStringControl() { - return ""; - } - - function toStringLabel() { - return ""; - } - - function toArray() { - return array( - "label"=>$this->toStringLabel(), - "control"=>$this->toStringControl() - ); - } - + function toArray() { + return array( + 'label'=>$this->getLabelHtml(), + 'control'=>$this->getHtml()); + } }