* @package group * @version $Id: control.php 4648 2013-04-15 02:45:49Z chencongzhi520@gmail.com $ * @link http://www.zentao.net */ class group extends control { /** * Construct function. * * @access public * @return void */ public function __construct($moduleName = '', $methodName = '') { parent::__construct($moduleName, $methodName); $this->loadModel('company')->setMenu(); $this->loadModel('user'); $this->appendResourcePackages(); } /** * Append packages in resource. * * @access public * @return void */ public function appendResourcePackages() { $allPrivs = array(); foreach($this->config->group->package as $packageCode => $package) { if(!isset($package->privs)) continue; foreach($package->privs as $privCode => $priv) { $allPrivs[$privCode] = $privCode; } } /* Privs in resource but not in package. */ foreach($this->lang->resource as $module => $methodList) { foreach($methodList as $method => $methodLang) { if(isset($allPrivs[$module . '-' . $method])) continue; /* Create subset. */ if(!isset($this->config->group->subset->$module)) { $this->config->group->subset->$module = new stdclass(); $this->config->group->subset->$module->order = 10000; $this->config->group->subset->$module->nav = $module; } /* Create subset. */ $methodPackage = array('create' => 'manage', 'batchcreate' => 'manage', 'browse' => 'browse', 'view' => 'browse', 'delete' => 'delete', 'batchdelete' => 'delete', 'edit' => 'manage', 'batchedit' => 'manage'); $packageName = isset($methodPackage[$method]) ? $methodPackage[$method] : 'other'; $packageCode = $module . $packageName; if(!isset($this->config->group->package->$packageCode)) { $this->config->group->package->$packageCode = new stdclass(); $this->config->group->package->$packageCode->order = 5; $this->config->group->package->$packageCode->subset = $module; $this->config->group->package->$packageCode->privs = array(); $this->lang->group->package->$packageCode = $this->lang->group->package->$packageName; } /* Browse action in workflow. */ if(isset($this->lang->$module->menus) && $method == 'browse') { $this->config->group->package->$packageCode->privs["$module-$method"] = array('edition' => 'open,biz,max,ipd', 'vision' => 'rnd,or', 'order' => 5, 'depend' => array(), 'recommend' => array()); foreach($this->lang->$module->menus as $flowMethod => $flowName) { $this->config->group->package->$packageCode->privs["$module-$flowMethod"] = array('edition' => 'open,biz,max,ipd', 'vision' => 'rnd,or', 'order' => 5, 'depend' => array("$module-$method"), 'recommend' => array()); } } else { $this->config->group->package->$packageCode->privs["$module-$method"] = array('edition' => 'open,biz,max,ipd', 'vision' => 'rnd,or', 'order' => 5, 'depend' => array(), 'recommend' => array()); } } } } /** * Browse groups. * * @access public * @return void */ public function browse() { $title = $this->lang->company->orgView . $this->lang->colon . $this->lang->group->browse; $position[] = $this->lang->group->browse; $groups = $this->group->getList(); $groupUsers = array(); foreach($groups as $group) { if($group->role == 'projectAdmin') { $groupUsers[$group->id] = $this->dao->select('t1.account, t2.realname')->from(TABLE_PROJECTADMIN)->alias('t1')->leftJoin(TABLE_USER)->alias('t2')->on('t1.account = t2.account')->fetchPairs(); } else { $groupUsers[$group->id] = $this->group->getUserPairs($group->id); } } $this->view->title = $title; $this->view->position = $position; $this->view->groups = $groups; $this->view->groupUsers = $groupUsers; $this->display(); } /** * Create a group. * * @access public * @return void */ public function create() { if(!empty($_POST)) { $groupID = $this->group->create(); if(dao::isError()) return print(js::error(dao::getError())); if($this->viewType == 'json') return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'id' => $groupID)); if(isonlybody()) return print(js::closeModal('parent.parent', 'this')); return print(js::locate($this->createLink('group', 'browse'), 'parent')); } $this->view->title = $this->lang->company->orgView . $this->lang->colon . $this->lang->group->create; $this->view->position[] = $this->lang->group->create; $this->display(); } /** * Edit a group. * * @param int $groupID * @access public * @return void */ public function edit($groupID) { if(!empty($_POST)) { $this->group->update($groupID); if(dao::isError()) return print(js::error(dao::getError())); if(isonlybody()) return print(js::closeModal('parent.parent', 'this')); return print(js::locate($this->createLink('group', 'browse'), 'parent')); } $title = $this->lang->company->orgView . $this->lang->colon . $this->lang->group->edit; $position[] = $this->lang->group->edit; $this->view->title = $title; $this->view->position = $position; $this->view->group = $this->group->getById($groupID); $this->display(); } /** * Copy a group. * * @param int $groupID * @access public * @return void */ public function copy($groupID) { if(!empty($_POST)) { $this->group->copy($groupID); if(dao::isError()) return print(js::error(dao::getError())); if(isonlybody()) return print(js::closeModal('parent.parent', 'this')); return print(js::locate($this->createLink('group', 'browse'), 'parent')); } $this->view->title = $this->lang->company->orgView . $this->lang->colon . $this->lang->group->copy; $this->view->position[] = $this->lang->group->copy; $this->view->group = $this->group->getById($groupID); $this->display(); } /** * Manage view. * * @param int $groupID * @access public * @return void */ public function manageView($groupID) { if($_POST) { $this->group->updateView($groupID); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); $link = isonlybody() ? 'parent' : $this->createLink('group', 'browse'); return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => $link)); } /* Get the group data by id. */ $group = $this->group->getByID($groupID); $this->view->title = $this->lang->company->common . $this->lang->colon . $group->name . $this->lang->colon . $this->lang->group->manageView; /* Get the list of data sets under administrator permission. */ if(!$this->app->user->admin) { $this->app->user->admin = true; $changeAdmin = true; } $executionProject = $this->dao->select('t1.id, t2.name')->from(TABLE_EXECUTION)->alias('t1') ->leftJoin(TABLE_PROJECT)->alias('t2')->on('t1.project = t2.id') ->where('t1.deleted')->eq('0') ->andWhere('t1.id')->in($this->app->user->view->sprints) ->fetchPairs(); $executions = $this->loadModel('execution')->getPairs(0, 'all', 'all'); foreach($executions as $id => $name) { if(isset($executionProject[$id])) $executions[$id] = $executionProject[$id] . ' / ' . $name; } $this->view->group = $group; $this->view->programs = $this->loadModel('program')->getParentPairs('', '', false); $this->view->projects = $this->loadModel('project')->getPairsByProgram('', 'all', true, 'order_desc'); $this->view->executions = $executions; $this->view->products = $this->loadModel('product')->getPairs(); if(!empty($changeAdmin)) $this->app->user->admin = false; $navGroup = array(); foreach($this->lang->navGroup as $moduleName => $groupName) { if($groupName == $moduleName) continue; if($moduleName == 'testcase') $moduleName = 'case'; $navGroup[$groupName][$moduleName] = $moduleName; } $this->view->navGroup = $navGroup; $this->display(); } /** * Manage priv by package or group. * * @param int $groupID * @param string $nav * @param string $version * @access public * @return void */ protected function managePrivByGroup($groupID = 0, $nav = '', $version = '') { $this->group->sortResource(); $group = $this->group->getById($groupID); $groupPrivs = $this->group->getPrivs($groupID); $versionPrivs = $this->group->getPrivsAfterVersion($version); /* Subsets . */ $subsets = array(); foreach($this->config->group->subset as $subsetName => $subset) { $subset->code = $subsetName; $subset->allCount = 0; $subset->selectCount = 0; $subsets[$subset->code] = $subset; } $selectPrivs = $this->group->getPrivListByGroup($groupID); $allPrivList = $this->group->getPrivListByNav($nav, $version); $selectedPrivList = array(); $packages = array(); foreach($allPrivList as $privCode => $priv) { $subsetCode = $priv->subset; $packageCode = $priv->package; if(!isset($packages[$subsetCode])) $packages[$subsetCode] = array(); if(!isset($subsets[$subsetCode])) { $subset = new stdclass(); $subset->code = $subsetCode; $subset->allCount = 0; $subset->selectCount = 0; $subsets[$subsetCode] = $subset; } if(!isset($packages[$subsetCode][$packageCode])) { $package = new stdclass(); $package->allCount = 0; $package->selectCount = 0; $package->subset = $subsetCode; $package->privs = array(); $packages[$subsetCode][$packageCode] = $package; } $packages[$subsetCode][$packageCode]->privs[$privCode] = $priv; $packages[$subsetCode][$packageCode]->allCount ++; $subsets[$subsetCode]->allCount ++; if(isset($selectPrivs[$privCode])) { $packages[$subsetCode][$packageCode]->selectCount ++; $subsets[$subsetCode]->selectCount ++; $selectedPrivList[] = $privCode; } } $allPrivList = array_keys($allPrivList); $relatedPrivData = $this->group->getRelatedPrivs($allPrivList, $selectedPrivList); $this->view->title = $this->lang->company->common . $this->lang->colon . $group->name . $this->lang->colon . $this->lang->group->managePriv; $this->view->position[] = $group->name; $this->view->position[] = $this->lang->group->managePriv; $this->view->allPrivList = $allPrivList; $this->view->selectedPrivList = $selectedPrivList; $this->view->relatedPrivData = $relatedPrivData; $this->view->group = $group; $this->view->groupPrivs = $groupPrivs; $this->view->groupID = $groupID; $this->view->nav = $nav; $this->view->version = $version; $this->view->subsets = $subsets; $this->view->packages = $packages; } /** * Manage priv by module. * * @access public * @return void */ protected function managePrivByModule() { $this->group->loadResourceLang(); $subsets = array(); $packages = array(); $privs = array(); /* Subsets in package. */ foreach($this->config->group->package as $packageCode => $packageData) { foreach($packageData->privs as $privCode => $priv) { list($moduleName, $methodName) = explode('-', $privCode); if(strpos(',' . $priv['edition'] . ',', ',' . $this->config->edition . ',') === false) continue; if(strpos(',' . $priv['vision'] . ',', ',' . $this->config->vision . ',') === false) continue; /* Remove privs unused in the edition. */ if(!isset($this->lang->resource->$moduleName) || !isset($this->lang->resource->$moduleName->$methodName)) continue; $subset = $packageData->subset; if(!isset($subsets[$subset])) { $subsets[$subset] = $this->lang->$subset->common; $packages[$subset] = array(); } $packages[$subset][$packageCode] = isset($this->lang->group->package->$packageCode) ? $this->lang->group->package->$packageCode : $packageCode; $privs[$privCode] = $privCode; } } $this->view->title = $this->lang->company->common . $this->lang->colon . $this->lang->group->managePriv; $this->view->position[] = $this->lang->group->managePriv; $this->view->groups = $this->group->getPairs(); $this->view->subsets = $subsets; $this->view->packages = $packages; $this->view->privs = $this->group->getPrivByParents(key($subsets)); } /** * Manage privleges of a group. * * @param string $type byPackage|byGroup|byModule * @param int $param * @param string $nav * @param string $version * @access public * @return void */ public function managePriv($type = 'byPackage', $param = 0, $nav = '', $version = '') { if($type == 'byGroup' or $type == 'byPackage') $groupID = $param; $this->view->type = $type; if(!empty($_POST)) { if($type == 'byGroup' || $type == 'byPackage') $result = $this->group->updatePrivByGroup($groupID, $nav, $version); if($type == 'byModule') $result = $this->group->updatePrivByModule(); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); if($type == 'byGroup' or $type == 'byPackage') return $this->send(array('result' => 'success', 'message' => ($result ? $this->lang->group->dependPrivsSaveTip : $this->lang->saveSuccess), 'locate' => 'reload')); if($type == 'byModule') return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => 'parent')); } if($type == 'byGroup' || $type == 'byPackage') $this->managePrivByGroup($groupID, $nav, $version); if($type == 'byModule') $this->managePrivByModule($groupID, $nav, $version); $this->display(); } /** * Manage members of a group. * * @param int $groupID * @param int $deptID * @access public * @return void */ public function manageMember($groupID, $deptID = 0) { if(!empty($_POST)) { $this->group->updateUser($groupID); if(isonlybody()) return print(js::closeModal('parent.parent', 'this')); return print(js::locate($this->createLink('group', 'browse'), 'parent')); } $group = $this->group->getById($groupID); $groupUsers = $this->group->getUserPairs($groupID); $allUsers = $this->loadModel('dept')->getDeptUserPairs($deptID); $otherUsers = array_diff_assoc($allUsers, $groupUsers); $outsideUsers = $this->user->getPairs('outside|noclosed|noletter|noempty'); $this->view->outsideUsers = array_diff_assoc($outsideUsers, $groupUsers); $title = $this->lang->company->common . $this->lang->colon . $group->name . $this->lang->colon . $this->lang->group->manageMember; $position[] = $group->name; $position[] = $this->lang->group->manageMember; $this->view->title = $title; $this->view->position = $position; $this->view->group = $group; $this->view->deptTree = $this->loadModel('dept')->getTreeMenu($rooteDeptID = 0, array('deptModel', 'createGroupManageMemberLink'), $groupID); $this->view->groupUsers = $groupUsers; $this->view->otherUsers = $otherUsers; $this->display(); } /** * Manage members of a group. * * @param int $groupID * @param int $deptID * @access public * @return void */ public function manageProjectAdmin($groupID, $deptID = 0) { if(!empty($_POST)) { $this->group->updateProjectAdmin($groupID); return print(js::locate(inlink('manageProjectAdmin', "group=$groupID"), 'parent')); } list($programs, $projects, $products, $executions) = $this->group->getObject4AdminGroup(); $group = $this->group->getById($groupID); $groupUsers = $this->dao->select('t1.account, t2.realname')->from(TABLE_PROJECTADMIN)->alias('t1')->leftJoin(TABLE_USER)->alias('t2')->on('t1.account = t2.account')->fetchPairs(); $title = $this->lang->company->common . $this->lang->colon . $group->name . $this->lang->colon . $this->lang->group->manageMember; $position[] = $group->name; $position[] = $this->lang->group->manageMember; $this->view->title = $title; $this->view->position = $position; $this->view->allUsers = array('' => '') + $groupUsers + $this->loadModel('dept')->getDeptUserPairs($deptID); $this->view->groupID = $groupID; $this->view->deptID = $deptID; $this->view->deptName = $deptID ? $this->dao->findById($deptID)->from(TABLE_DEPT)->fetch('name') : ''; $this->view->programs = $programs; $this->view->projects = $projects; $this->view->products = $products; $this->view->executions = $executions; $this->view->deptTree = $this->loadModel('dept')->getTreeMenu($rooteDeptID = 0, array('deptModel', 'createManageProjectAdminLink'), $groupID); $this->view->projectAdmins = $this->group->getProjectAdmins(); $this->display(); } /** * Delete a group. * * @param int $groupID * @param string $confirm yes|no * @access public * @return void */ public function delete($groupID, $confirm = 'no') { if($confirm == 'no') { return print(js::confirm($this->lang->group->confirmDelete, $this->createLink('group', 'delete', "groupID=$groupID&confirm=yes"))); } else { $this->group->delete($groupID); /* if ajax request, send result. */ if($this->server->ajax) { if(dao::isError()) { $response['result'] = 'fail'; $response['message'] = dao::getError(); } else { $response['result'] = 'success'; $response['message'] = ''; } return $this->send($response); } return print(js::locate($this->createLink('group', 'browse'), 'parent')); } } /** * Edit manage priv. * * @param string $browseType * @param string $view * @param int $paramID * @param int $recTotal * @param int $recPerPage * @param int $pageID * @access public * @return void */ public function editManagePriv($browseType = '', $view = '', $paramID = 0, $recTotal = 0, $recPerPage = 100, $pageID = 1) { if(empty($browseType) and $browseType != 'bysearch') $browseType = $this->cookie->managePrivEditType ? $this->cookie->managePrivEditType : 'bycard'; if($browseType == 'bysearch' and $this->cookie->managePrivEditType == 'bycard') $browseType = 'bycard'; $moduleLang = $this->group->getMenuModules($view, true); if($browseType == 'bycard') { $privs = $this->group->getPrivsListByView($view); $privPackages = $this->group->getPrivPackagePairs(); $privLang = $this->group->getPrivLangPairs(); $privList = array(); foreach($privs as $privID => $priv) { if(!isset($privList[$priv->module])) $privList[$priv->module] = array(); if(!isset($privList[$priv->module][$priv->package])) $privList[$priv->module][$priv->package] = array(); $privList[$priv->module][$priv->package][$priv->id] = $priv; } $this->view->privLang = $privLang; $this->view->privPackages = $privPackages; } else { $privList = $browseType != 'bysearch' ? $this->group->getPrivsListByView($view) : $this->group->getPrivsListBySearch($paramID); foreach($privList as $privID => $priv) if(!$this->group->checkMenuModule($view, $priv->module)) unset($privList[$privID]); /* Pager. */ $this->app->loadClass('pager', $static = true); $recTotal = count($privList); $pager = new pager($recTotal, $recPerPage, $pageID); $privList = array_chunk($privList, $pager->recPerPage, true); $privList = empty($privList) ? $privList : $privList[$pageID - 1]; /* Build the search form. */ $queryID = ($browseType == 'bysearch') ? (int)$paramID : 0; $actionURL = $this->createLink('group', 'editManagePriv', "browseType=bysearch&view=¶mID=myQueryID&recTotal=$recTotal&recPerPage=$recPerPage"); $this->group->buildPrivSearchForm($queryID, $actionURL); $privRelations = $this->group->getPrivRelationsByIdList(array_keys($privList)); if(!isset($privRelations['recommend'])) $privRelations['recommend'] = array(); if(!isset($privRelations['depend'])) $privRelations['depend'] = array(); $this->view->pager = $pager; $this->view->privRelations = $privRelations; } $this->view->title = $this->lang->group->editManagePriv; $this->view->browseType = $browseType; $this->view->privList = $privList; $this->view->packages = $this->group->getPrivPackagePairs($view); $this->view->moduleLang = $moduleLang; $this->view->modulePackages = $this->group->getModuleAndPackageTree(); $this->view->view = $view; $this->display(); } /** * Batch change package. * * @param string $module * @param int $packageID * @access public * @return void */ public function batchChangePackage($module, $packageID) { if(empty($_POST['privIdList'])) return print(js::reload('parent')); $privIdList = array_unique($_POST['privIdList']); $allChanges = $this->group->batchChangePackage($privIdList, $module, $packageID); if(dao::isError()) return print(js::error(dao::getError())); $this->loadModel('action'); foreach($allChanges as $privID => $changes) { $actionID = $this->action->create('privlang', $privID, 'Edited'); $this->action->logHistory($actionID, $changes); } return print(js::reload('parent')); } /** * Manage privilege packages. * * @access public * @return void */ public function managePrivPackage() { $this->view->title = $this->lang->group->managePrivPackage; $this->view->packagesTreeList = $this->group->getPrivPackageTreeList(); $this->display(); } /** * Create a privilege package. * * @access public * @return void */ public function createPrivPackage() { if(!empty($_POST)) { $packageID = $this->group->createPrivPackage(); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => 'parent')); } $this->view->title = $this->lang->group->createPrivPackage; $this->view->modules = $this->group->getPrivModules(); $this->display(); } /** * Edit a privilege package. * * @access public * @return void */ public function editPrivPackage($privPackageID) { if(!empty($_POST)) { $changes = $this->group->updatePrivPackage($privPackageID); if($changes) { $actionID = $this->loadModel('action')->create('privpackage', $privPackageID, 'Edited'); $this->action->logHistory($actionID, $changes); } if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => 'parent')); } $this->view->title = $this->lang->group->editPrivPackage; $this->view->privPackage = $this->group->getPrivPackageByID($privPackageID); $this->view->modules = $this->group->getPrivModules(); $this->view->actions = $this->loadModel('action')->getList('privpackage', $privPackageID); $this->view->users = $this->loadModel('user')->getPairs(); $this->display(); } /** * Sort priv packages. * * @param int $parentID * @param string $type * @access public * @return void */ public function sortPrivPackages($parentID = 0, $type = '') { $orders = $_POST['orders']; if(empty($orders)) return false; if($type == 'view') { $orders = str_replace('View,', ',', $orders); $orders = trim($orders, ','); $this->loadModel('setting')->setItem("system.priv.views", $orders); } if($type == 'module') { $orders = trim($orders, ','); $parentID = rtrim($parentID, 'View'); $this->loadModel('setting')->setItem("system.priv.{$parentID}Modules", $orders); } if($type == 'package') { $orders = explode(',', $orders); foreach($orders as $index => $id) { if(!empty($id)) $this->dao->update(TABLE_PRIVPACKAGE)->set('order')->eq(($index + 1) * 5)->where('id')->eq($id)->exec(); } } } /** * Delete a priv package. * * @param int $privPackageID * @access public * @return void */ public function deletePrivPackage($privPackageID, $confirm = 'no') { if($confirm == 'no') { return print(js::confirm($this->lang->group->confirmDeleteAB, $this->createLink('group', 'deletePrivPackage', "privPackageID=$privPackageID&confirm=yes"))); } else { $privPackage = $this->group->getPrivPackageByID($privPackageID); $this->group->deletePrivPackage($privPackageID); if(!dao::isError()) $this->loadModel('action')->create('privpackage', $privPackageID, 'deleted', '', zget($privPackage, 'name')); return print(js::reload('parent')); } } /** * Add recommendation. * * @param string $privIdList * @param string $type depend|recommend * @access public * @return void */ public function addRelation($privIdList, $type) { if(strpos("depend|recommend", $type) === false) return print('Error type'); if($this->server->request_method == 'POST') { if(empty($_POST['relation'])) return print(js::alert($this->lang->group->noticeNoChecked)); $this->group->saveRelation($privIdList, $type); if(strpos($privIdList, ',') === false) print(js::execute("if(typeof(parent.parent.getSideRelation) == 'function') parent.parent.getSideRelation({$privIdList})")); return print(js::reload('parent')); } $privs = $this->group->getPrivByIdList($privIdList); $modules = array(); foreach($privs as $priv) $modules[$priv->module] = $priv->module; $modulePrivs = $this->group->getPrivByModule($modules); $packageIdList = array(); foreach($modulePrivs as $packagePrivs) $packageIdList = array_unique(array_merge($packageIdList, array_keys($packagePrivs))); $this->view->privs = $privs; $this->view->modules = array('' => $this->lang->group->selectModule) + $this->group->getMenuModules(null, true); $this->view->packages = $this->dao->select('*')->from(TABLE_PRIVPACKAGE)->where('id')->in($packageIdList)->orderBy('`order`')->fetchPairs('id', 'name'); $this->view->modulePrivs = $modulePrivs; $this->view->type = $type; $this->display(); } /** * Delete relation. * * @param string $type recommend|depend * @param int $privID * @param int $relationPriv * @access public * @return void */ public function deleteRelation($type, $privID, $relationPriv) { $this->dao->delete()->from(TABLE_PRIVRELATION)->where('type')->eq($type)->andWhere('priv')->eq($privID)->andWhere('relationPriv')->eq($relationPriv)->exec(); } /** * Batch delete relation. * * @param string $privIdList * @param string $type recommend|depend * @access public * @return void */ public function batchDeleteRelation($privIdList, $type) { if(strpos("depend|recommend", $type) === false) return print('Error type'); if($this->server->request_method == 'POST') { if(empty($_POST['relation'])) return print(js::alert($this->lang->group->noticeNoChecked)); $data = fixer::input('post')->get(); $deletedPriv = array(); foreach($data->relation as $module => $relations) $deletedPriv = array_merge($deletedPriv, $relations); $this->dao->delete()->from(TABLE_PRIVRELATION)->where('type')->eq($type)->andWhere('priv')->in($privIdList)->andWhere('relationPriv')->in($deletedPriv)->exec(); return print(js::reload('parent')); } $privs = $this->group->getPrivByIdList($privIdList); $modules = array(); foreach($privs as $priv) $modules[$priv->module] = $priv->module; $modulePrivs = $this->group->getPrivByModule($modules); $packageIdList = array(); foreach($modulePrivs as $packagePrivs) $packageIdList = array_unique(array_merge($packageIdList, array_keys($packagePrivs))); $this->view->privs = $privs; $this->view->modules = array('' => $this->lang->group->selectModule) + $this->group->getMenuModules(null, true); $this->view->packages = $this->dao->select('*')->from(TABLE_PRIVPACKAGE)->where('id')->in($packageIdList)->orderBy('`order`')->fetchPairs('id', 'name'); $this->view->modulePrivs = $modulePrivs; $this->view->type = $type; $this->display('group', 'addrelation'); } /** * Ajax get priv tree. * * @param string $privIdList * @param string $module * @param string $type recommend|depend * @access public * @return void */ public function ajaxGetPrivTree($privIdList, $module, $type = 'recommend') { if(is_string($privIdList)) $privIdList = explode(',', $privIdList); $modulePrivs = $this->group->getPrivByModule($module); $packageIdList = array(); foreach($modulePrivs as $packagePrivs) $packageIdList = array_unique(array_merge($packageIdList, array_keys($packagePrivs))); $modules = $this->group->getMenuModules(null, true); $packages = $this->dao->select('*')->from(TABLE_PRIVPACKAGE)->where('id')->in($packageIdList)->orderBy('`order`')->fetchPairs('id', 'name'); $tree = "