X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/bd569da4f1d6ada00f5e48eac9716c068003748a..5532fe6cfc2125063ff8040cfa80e20089ac64b0:/WEB-INF/lib/form/FormElement.class.php diff --git a/WEB-INF/lib/form/FormElement.class.php b/WEB-INF/lib/form/FormElement.class.php index 384dbebd..fde8b400 100644 --- a/WEB-INF/lib/form/FormElement.class.php +++ b/WEB-INF/lib/form/FormElement.class.php @@ -40,7 +40,6 @@ class FormElement { var $style = ''; // Control style. // TODO: refactoring ongoing down from here. - var $mRenderable = true; var $mEnabled = true; var $cClassName = "FormElement"; var $mI18n = null; @@ -76,10 +75,7 @@ class FormElement { function setStyle($value) { $this->style = $value; } function getStyle() { return $this->style; } - - function setRenderable($flag) { $this->mRenderable = $flag; } - function isRenderable() { return $this->mRenderable; } - + function setEnable($flag) { $this->mEnabled = $flag; } function isEnable() { return $this->mEnabled; }