X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=cf_custom_field_add.php;h=e4a919eb595883c52b0a7118a244856020752351;hb=691958794018beda9788e9bdb47d640a116af492;hp=922d83b7ca6e3b2f7b95a84e5f136bf3e3c4fa97;hpb=a8a191541d6f05b08bd8331bdf409af5abfac896;p=timetracker.git diff --git a/cf_custom_field_add.php b/cf_custom_field_add.php index 922d83b7..e4a919eb 100644 --- a/cf_custom_field_add.php +++ b/cf_custom_field_add.php @@ -39,9 +39,17 @@ if (!$user->isPluginEnabled('cf')) { header('Location: feature_disabled.php'); exit(); } +$fields = CustomFields::getFields(); +// Deny access when max number of custom fields is already set. +if (count($fields) >= 1) { + header('Location: access_denied.php'); + exit(); +} +// End of access checks. if ($request->isPost()) { $cl_field_name = trim($request->getParameter('name')); + $cl_entity_type = $request->getParameter('entity'); $cl_field_type = $request->getParameter('type'); $cl_required = $request->getParameter('required'); if (!$cl_required) @@ -50,6 +58,10 @@ if ($request->isPost()) { $form = new Form('fieldForm'); $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','value'=>'')); +$form->addInput(array('type'=>'combobox','name'=>'entity', + 'data'=>array(CustomFields::ENTITY_TIME=>$i18n->get('dropdown.time'), + CustomFields::ENTITY_USER=>$i18n->get('dropdown.user')) +)); $form->addInput(array('type'=>'combobox','name'=>'type', 'data'=>array(CustomFields::TYPE_TEXT=>$i18n->get('label.type_text'), CustomFields::TYPE_DROPDOWN=>$i18n->get('label.type_dropdown')) @@ -62,7 +74,7 @@ if ($request->isPost()) { if (!ttValidString($cl_field_name)) $err->add($i18n->get('error.field'), $i18n->get('label.thing_name')); if ($err->no()) { - $res = CustomFields::insertField($cl_field_name, $cl_field_type, $cl_required); + $res = CustomFields::insertField($cl_field_name, $cl_entity_type, $cl_field_type, $cl_required); if ($res) { header('Location: cf_custom_fields.php'); exit();