X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=cf_custom_field_add.php;h=1d293d37733af8d3f5b76d2b630838a32eafb823;hb=30470a2fe679c83c29259328c5ad60a32ce69d3d;hp=056ce531abe9910b92d2e7cad0a3478fc09838e6;hpb=fd3db1c1a2b975a23c907b2e9b714a0cfe47f3e0;p=timetracker.git diff --git a/cf_custom_field_add.php b/cf_custom_field_add.php index 056ce531..1d293d37 100644 --- a/cf_custom_field_add.php +++ b/cf_custom_field_add.php @@ -31,12 +31,12 @@ require_once('plugins/CustomFields.class.php'); import('form.Form'); // Access check. -if (!ttAccessCheck(right_manage_team)) { +if (!ttAccessCheck(right_manage_team) || !$user->isPluginEnabled('cf')) { header('Location: access_denied.php'); exit(); } -if ($request->getMethod() == 'POST') { +if ($request->isPost()) { $cl_field_name = trim($request->getParameter('name')); $cl_field_type = $request->getParameter('type'); $cl_required = $request->getParameter('required'); @@ -53,19 +53,19 @@ $form->addInput(array('type'=>'combobox','name'=>'type', $form->addInput(array('type'=>'checkbox','name'=>'required','data'=>1,'value'=>'0')); $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->getKey('button.add'))); -if ($request->getMethod() == 'POST') { +if ($request->isPost()) { // Validate user input. - if (!ttValidString($cl_field_name)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.thing_name')); + if (!ttValidString($cl_field_name)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.thing_name')); - if ($errors->isEmpty()) { + if ($err->no()) { $res = CustomFields::insertField($cl_field_name, $cl_field_type, $cl_required); if ($res) { header('Location: cf_custom_fields.php'); exit(); } else - $errors->add($i18n->getKey('error.db')); + $err->add($i18n->getKey('error.db')); } -} // POST +} // isPost $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('onload', 'onLoad="document.fieldForm.name.focus()"');