X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=user_add.php;h=a00528bf3b3ba0ac5def8063829c593162fd1998;hb=36e4e3e4b457c992317212738d10693c269a4f6e;hp=59300859aa5ab17f744c66d3a54cde927af6c364;hpb=eb55e2f8ca3859482a389795e03b45283e14ef36;p=timetracker.git diff --git a/user_add.php b/user_add.php index 59300859..a00528bf 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)); @@ -105,7 +105,7 @@ class NameCellRenderer extends DefaultCellRenderer { class RateCellRenderer extends DefaultCellRenderer { function render(&$table, $value, $row, $column, $selected = false) { global $assigned_projects; - $field = new FloatField('rate_'.$table->getValueAtName($row, 'id'), $table->getValueAtName($row, 'p_rate')); + $field = new FloatField('rate_'.$table->getValueAtName($row, 'id')); $field->setFormName($table->getFormName()); $field->setLocalization($GLOBALS['I18N']); $field->setSize(5);