X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FForm.class.php;fp=WEB-INF%2Flib%2Fform%2FForm.class.php;h=be2c901fc5f878201e0586f95eb5d6bc28345dfe;hb=0fa80122e692abac96010f4da8ed55c3aa52b81b;hp=704ce7e5a90a86fe12bdced3edbb90b5abe6af27;hpb=cd5e077ecb497431decde4835138b877d63b261c;p=timetracker.git diff --git a/WEB-INF/lib/form/Form.class.php b/WEB-INF/lib/form/Form.class.php index 704ce7e5..be2c901f 100644 --- a/WEB-INF/lib/form/Form.class.php +++ b/WEB-INF/lib/form/Form.class.php @@ -26,13 +26,9 @@ // | https://www.anuko.com/time_tracker/credits.htm // +----------------------------------------------------------------------+ -// +----------------------------------------------------------------------+ -// | -// | Class generates elements of specification HTML 4.01 -// | http://www.w3.org/TR/1999/REC-html401-19991224 -// | -// +----------------------------------------------------------------------+ - +// Form class is a container for HTML forms we use in the application. +// It contains an array of $elements - which are individual input controls +// belonging to a form. class Form { var $name = ''; // Form name. var $elements = array(); // An array of input controls in form. @@ -89,8 +85,9 @@ class Form { case 'checkbox': import('form.Checkbox'); $el = new Checkbox($params['name']); + if (isset($params['checked'])) $el->setChecked(true); + // TODO: refactoring ongoing down from here. - if (@$params["checked"]) $el->setChecked(true); $el->setData(@$params["data"]); break;