isPost()) { $cl_name = trim($request->getParameter('group_name')); $cl_description = trim($request->getParameter('description')); } $form = new Form('groupForm'); $form->addInput(array('type'=>'text','maxlength'=>'200','name'=>'group_name','value'=>$cl_name)); $form->addInput(array('type'=>'textarea','name'=>'description','style'=>'width: 250px; height: 40px;','value'=>$cl_description)); $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->get('button.add'))); if ($request->isPost()) { // Validate user input. if (!ttValidString($cl_name)) $err->add($i18n->get('error.field'), $i18n->get('label.thing_name')); if (!ttValidString($cl_description, true)) $err->add($i18n->get('error.field'), $i18n->get('label.description')); if ($err->no()) { if (!ttGroupHelper::getSubgroupByName($cl_name)) { if (ttGroupHelper::insertSubgroup(array( 'name' => $cl_name, 'description' => $cl_description))) { header('Location: groups.php'); exit(); } else $err->add($i18n->get('error.db')); } else $err->add($i18n->get('error.object_exists')); } } // isPost $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('onload', 'onLoad="document.groupForm.group_name.focus()"'); $smarty->assign('title', $i18n->get('title.add_group')); $smarty->assign('content_page_name', 'group_add.tpl'); $smarty->display('index.tpl');