X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=group_add.php;h=f39ec016cf0eb0005f870572159e4a2f7f24fa61;hb=ed41335d63e71a11d30e92f4367106e9398adf9d;hp=4e8cb91a38e8565a18e5e8fe518d8daa10cf5dfc;hpb=d3bcdee6ccc7bd00dce1fdfd89dc604f9016b52c;p=timetracker.git diff --git a/group_add.php b/group_add.php index 4e8cb91a..f39ec016 100644 --- a/group_add.php +++ b/group_add.php @@ -28,6 +28,7 @@ require_once('initialize.php'); import('form.Form'); +import('ttGroupHelper'); // Access checks. if (!ttAccessAllowed('manage_subgroups')) { @@ -42,7 +43,7 @@ if ($request->isPost()) { } $form = new Form('groupForm'); -$form->addInput(array('type'=>'text','maxlength'=>'200','name'=>'group_name','value'=>$cl_group,'enable'=>$advanced_settings)); +$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'))); @@ -50,29 +51,23 @@ 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 (!ttProjectHelper::getProjectByName($cl_name)) { - if (ttProjectHelper::insert(array( - 'group_id' => $user->getActiveGroup(), - 'org_id' => $user->org_id, + if (!ttGroupHelper::getSubgroupByName($cl_name)) { + if (ttGroupHelper::insertSubgroup(array( 'name' => $cl_name, - 'description' => $cl_description, - 'users' => $cl_users, - 'tasks' => $cl_tasks, - 'status' => ACTIVE))) { - header('Location: projects.php'); + '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.projectForm.project_name.focus()"'); +$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');