X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=user_add.php;h=403c6ca6a37b6cfc2eb82d060e05d7a546b035b1;hb=b35ed34767de056ad0adef9d85060b587c1f6ce2;hp=26cbe695a00bac013e95f6e44dab840336d65e48;hpb=9e82b53fc5d8cb1e54b5fde774fa68a916f28b4c;p=timetracker.git diff --git a/user_add.php b/user_add.php index 26cbe695..403c6ca6 100644 --- a/user_add.php +++ b/user_add.php @@ -43,7 +43,7 @@ if (!ttAccessCheck(right_manage_team)) { // The "limit" plugin is not required for normal operation of the Time Tracker. @include('plugins/limit/user_add.php'); -if (in_array('cl', explode(',', $user->plugins))) +if ($user->isPluginEnabled('cl')) $clients = ttTeamHelper::getActiveClients($user->team_id); $assigned_projects = array(); @@ -84,10 +84,10 @@ $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'email','value'= $roles[ROLE_USER] = $i18n->getKey('label.user'); $roles[ROLE_COMANAGER] = $i18n->getKey('form.users.comanager'); -if (in_array('cl', explode(',', $user->plugins))) +if ($user->isPluginEnabled('cl')) $roles[ROLE_CLIENT] = $i18n->getKey('label.client'); $form->addInput(array('type'=>'combobox','onchange'=>'handleClientControl()','name'=>'role','value'=>$cl_role,'data'=>$roles)); -if (in_array('cl', explode(',', $user->plugins))) +if ($user->isPluginEnabled('cl')) $form->addInput(array('type'=>'combobox','name'=>'client','value'=>$cl_client_id,'data'=>$clients,'datakeys'=>array('id', 'name'),'empty'=>array(''=>$i18n->getKey('dropdown.select')))); $form->addInput(array('type'=>'floatfield','maxlength'=>'10','name'=>'rate','format'=>'.2','value'=>$cl_rate)); @@ -164,7 +164,7 @@ if ($request->isPost()) { } else $err->add($i18n->getKey('error.user_exists')); } -} // POST +} // isPost $smarty->assign('auth_external', $auth->isPasswordExternal()); $smarty->assign('forms', array($form->getName()=>$form->toArray()));