X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FForm.class.php;h=cb2f5203a79d96ddac95b59a828a97f9d368feb2;hb=14304210865aab4372e8e726f64d830c0a077de5;hp=5f825451ef280e040d61bbb459cba5413f9b27bb;hpb=e1703495130c8ed88fe210f50a2a6b453b3c566b;p=timetracker.git diff --git a/WEB-INF/lib/form/Form.class.php b/WEB-INF/lib/form/Form.class.php index 5f825451..cb2f5203 100644 --- a/WEB-INF/lib/form/Form.class.php +++ b/WEB-INF/lib/form/Form.class.php @@ -26,15 +26,10 @@ // | 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. @@ -90,11 +85,9 @@ class Form { case 'checkbox': import('form.Checkbox'); $el = new Checkbox($params['name']); + break; + // TODO: refactoring ongoing down from here. - if (@$params["checked"]) $el->setChecked(true); - $el->setData(@$params["data"]); - break; - case "checkboxgroup": import('form.CheckboxGroup'); $el = new CheckboxGroup($params["name"]);