545 lines
21 KiB
PHP
545 lines
21 KiB
PHP
<?php
|
|
/**
|
|
* The control file of tree module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package tree
|
|
* @version $Id: control.php 5002 2013-07-03 08:25:39Z chencongzhi520@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
class tree extends control
|
|
{
|
|
const NEW_CHILD_COUNT = 5;
|
|
|
|
/**
|
|
* Module browse.
|
|
*
|
|
* @param int $rootID
|
|
* @param string $viewType story|bug|case|doc
|
|
* @param int $currentModuleID
|
|
* @param int $branch
|
|
* @param string $from
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function browse($rootID, $viewType, $currentModuleID = 0, $branch = 0, $from = '')
|
|
{
|
|
$this->loadModel('product');
|
|
|
|
if($this->app->openApp == 'product')
|
|
{
|
|
$this->product->setMenu($rootID, 0, 0, '', $viewType);
|
|
}
|
|
else if($this->app->openApp == 'qa' and $viewType != 'caselib')
|
|
{
|
|
$products = $this->product->getPairs('noclosed');
|
|
$this->loadModel('qa')->setMenu($products, $rootID, 0, $viewType);
|
|
}
|
|
else if($this->app->openApp == 'project')
|
|
{
|
|
$this->loadModel('project')->setMenu($this->session->project);
|
|
}
|
|
|
|
/* According to the type, set the module root and modules. */
|
|
if(strpos('story|bug|case', $viewType) !== false)
|
|
{
|
|
$product = $this->loadModel('product')->getById($rootID);
|
|
if(empty($product)) $this->locate($this->createLink('product', 'create'));
|
|
if(!empty($product->type) && $product->type != 'normal')
|
|
{
|
|
$branches = $this->loadModel('branch')->getPairs($product->id);
|
|
if($currentModuleID)
|
|
{
|
|
$branchName = $branches[$branch];
|
|
unset($branches);
|
|
$branches[$branch] = $branchName;
|
|
}
|
|
$this->view->branches = $branches;
|
|
}
|
|
$this->view->root = $product;
|
|
|
|
/* Determines whether an object is editable. */
|
|
$canBeChanged = common::canModify('product', $product);
|
|
}
|
|
elseif(strpos($viewType, 'doc') !== false)
|
|
{
|
|
/* The viewType is doc. */
|
|
$this->loadModel('doc');
|
|
$viewType = 'doc';
|
|
$lib = $this->doc->getLibById($rootID);
|
|
$this->view->root = $lib;
|
|
}
|
|
elseif(strpos($viewType, 'caselib') !== false)
|
|
{
|
|
$this->loadModel('caselib');
|
|
$lib = $this->caselib->getById($rootID);
|
|
$this->view->root = $lib;
|
|
}
|
|
|
|
if($viewType == 'story')
|
|
{
|
|
/* Set menu.*/
|
|
$products = $this->product->getPairs();
|
|
$this->product->saveState($rootID, $products);
|
|
$this->product->setMenu($rootID, 0, 0, '', $viewType);
|
|
|
|
unset($products[$rootID]);
|
|
$currentProduct = key($products);
|
|
|
|
$this->lang->modulePageNav = '';
|
|
$this->view->allProduct = $products;
|
|
$this->view->currentProduct = $currentProduct;
|
|
$this->view->productModules = $this->tree->getOptionMenu($currentProduct, 'story');
|
|
|
|
$title = $this->lang->tree->manageProduct;
|
|
$position[] = html::a($this->createLink('product', 'browse', "product=$rootID"), $product->name);
|
|
$position[] = $this->lang->tree->manageProduct;
|
|
}
|
|
elseif($viewType == 'bug')
|
|
{
|
|
$this->app->loadConfig('qa');
|
|
foreach($this->config->qa->menuList as $module) $this->lang->navGroup->$module = 'qa';
|
|
$this->app->rawModule = 'bug';
|
|
|
|
$title = $this->lang->tree->manageBug;
|
|
$position[] = html::a($this->createLink('bug', 'browse', "product=$rootID"), $product->name);
|
|
$position[] = $this->lang->tree->manageBug;
|
|
}
|
|
elseif($viewType == 'feedback')
|
|
{
|
|
$this->app->loadLang('feedback');
|
|
$this->lang->tree->menu = $this->lang->feedback->menu;
|
|
$root = new stdclass();
|
|
$root->name = $this->lang->feedback->common;
|
|
$this->view->root = $root;
|
|
|
|
$title = $this->lang->tree->manageFeedback;
|
|
$position[] = html::a($this->createLink('feedback', 'admin'), $this->lang->tree->manageFeedback);
|
|
}
|
|
elseif($viewType == 'case')
|
|
{
|
|
$this->app->loadConfig('qa');
|
|
foreach($this->config->qa->menuList as $module) $this->lang->navGroup->$module = 'qa';
|
|
$this->app->rawModule = 'testcase';
|
|
|
|
$title = $this->lang->tree->manageCase;
|
|
$position[] = html::a($this->createLink('testcase', 'browse', "product=$rootID"), $product->name);
|
|
$position[] = $this->lang->tree->manageCase;
|
|
}
|
|
elseif($viewType == 'caselib')
|
|
{
|
|
$this->app->loadConfig('qa');
|
|
foreach($this->config->qa->menuList as $module) $this->lang->navGroup->$module = 'qa';
|
|
|
|
$this->caselib->setLibMenu($this->caselib->getLibraries(), $rootID);
|
|
$this->app->rawModule = 'caselib';
|
|
|
|
$title = $this->lang->tree->manageCaseLib;
|
|
$position[] = html::a($this->createLink('caselib', 'browse', "libID=$rootID"), $lib->name);
|
|
$position[] = $this->lang->tree->manageCaseLib;
|
|
}
|
|
elseif(strpos($viewType, 'doc') !== false)
|
|
{
|
|
$this->lang->navGroup->tree = 'doc';
|
|
|
|
if($from == 'product')
|
|
{
|
|
$productID = $lib->product;
|
|
unset($this->lang->product->menu->set['subModule']);
|
|
|
|
$products = $this->product->getPairs();
|
|
$this->product->saveState($productID, $products);
|
|
$this->product->setMenu($productID, $branch);
|
|
}
|
|
elseif($from == 'project')
|
|
{
|
|
$this->lang->navGroup->tree = 'project';
|
|
$this->lang->tree->menu = $this->lang->project->menu;
|
|
$this->lang->tree->menuOrder = $this->lang->project->menuOrder;
|
|
|
|
/* The project parameter needs to be present when the tree module belongs to the project grouping. */
|
|
if($this->session->docList && $this->session->project && strpos($this->session->docList, 'project') === false) $this->session->set('docList', $this->session->docList . '?project=' . $this->session->project, 'project');
|
|
}
|
|
|
|
if($from == 'doc') $this->lang->navGroup->doc = 'doc';
|
|
$type = $lib->product ? 'product' : ($lib->project ? 'project' : ($lib->execution ? 'execution' : 'custom'));
|
|
$this->lang->tree->menu = $this->lang->doc->menu;
|
|
$this->lang->tree->menuOrder = $this->lang->doc->menuOrder;
|
|
|
|
$title = $this->lang->tree->manageCustomDoc;
|
|
$position[] = html::a($this->createLink('doc', 'browse', "libID=$rootID"), $lib->name);
|
|
$position[] = $this->lang->tree->manageCustomDoc;
|
|
}
|
|
elseif($viewType == 'line')
|
|
{
|
|
$products = $this->product->getPairs('', $this->session->project);
|
|
|
|
$this->product->setMenu($products, $rootID, $branch, 'line', '', 'line');
|
|
$this->lang->tree->menu = $this->lang->product->menu;
|
|
$this->lang->tree->menuOrder = $this->lang->product->menuOrder;
|
|
|
|
unset($products[$rootID]);
|
|
$currentProduct = key($products);
|
|
|
|
$this->view->allProduct = $products;
|
|
$this->view->currentProduct = $currentProduct;
|
|
$this->view->productModules = $this->tree->getOptionMenu($currentProduct, 'line');
|
|
|
|
$title = $this->lang->tree->manageLine;
|
|
$position[] = $this->lang->tree->manageLine;
|
|
}
|
|
elseif($viewType == 'trainskill')
|
|
{
|
|
$this->lang->tree->menu = $this->lang->trainskill->menu;
|
|
|
|
$title = $this->lang->tree->manageTrainskill;
|
|
$position[] = $this->lang->tree->manageTrainskill;
|
|
}
|
|
elseif($viewType == 'trainpost')
|
|
{
|
|
$postBrowseType = $this->session->postBrowseType ? $this->session->postBrowseType : 'train';
|
|
if($postBrowseType == 'train')
|
|
{
|
|
$this->lang->tree->menu = $this->lang->train->menu;
|
|
}
|
|
else
|
|
{
|
|
$this->lang->tree->menu = $this->lang->company->menu;
|
|
}
|
|
|
|
$title = $this->lang->tree->manageTrainpost;
|
|
$position[] = $this->lang->tree->manageTrainpost;
|
|
}
|
|
|
|
$parentModules = $this->tree->getParents($currentModuleID);
|
|
$this->view->title = $title;
|
|
$this->view->position = $position;
|
|
$this->view->rootID = $rootID;
|
|
$this->view->viewType = $viewType;
|
|
$this->view->modules = $this->tree->getTreeMenu($rootID, $viewType, $rooteModuleID = 0, array('treeModel', 'createManageLink'));
|
|
$this->view->sons = $this->tree->getSons($rootID, $currentModuleID, $viewType, $branch);
|
|
$this->view->currentModuleID = $currentModuleID;
|
|
$this->view->parentModules = $parentModules;
|
|
$this->view->branch = $branch;
|
|
$this->view->from = $from;
|
|
$this->view->tree = $this->tree->getProductStructure($rootID, $viewType);
|
|
$this->view->canBeChanged = isset($canBeChanged) ? $canBeChanged : true;
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Browse task module.
|
|
*
|
|
* @param int $rootID
|
|
* @param int $productID
|
|
* @param int $currentModuleID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function browseTask($rootID, $productID = 0, $currentModuleID = 0)
|
|
{
|
|
$this->lang->navGroup->tree = 'execution';
|
|
|
|
/* Get execution. */
|
|
$execution = $this->loadModel('execution')->getById($rootID);
|
|
$this->view->root = $execution;
|
|
|
|
/* Get all associated products. */
|
|
$products = $this->execution->getProducts($rootID);
|
|
$this->view->products = $products;
|
|
|
|
$executions = $this->execution->getPairs($this->session->project);
|
|
|
|
/* Set menu. */
|
|
$this->execution->setMenu($rootID);
|
|
$this->lang->tree->menu = $this->lang->execution->menu;
|
|
$this->lang->tree->menuOrder = $this->lang->execution->menuOrder;
|
|
|
|
unset($executions[$rootID]);
|
|
$parentModules = $this->tree->getParents($currentModuleID);
|
|
$newModule = (version_compare($execution->openedVersion, '4.1', '>') and $products) ? true : false;
|
|
|
|
$title = $this->lang->tree->manageExecution;
|
|
$position[] = html::a($this->createLink('execution', 'task', "executionID=$rootID"), $execution->name);
|
|
$position[] = $this->lang->tree->manageExecution;
|
|
|
|
$this->view->title = $title;
|
|
$this->view->position = $position;
|
|
$this->view->rootID = $rootID;
|
|
$this->view->productID = $productID;
|
|
$this->view->allProject = $executions;
|
|
$this->view->newModule = $newModule;
|
|
$this->view->modules = $this->tree->getTaskTreeMenu($rootID, $productID, $rooteModuleID = 0, array('treeModel', 'createTaskManageLink'), 'allModule');
|
|
$this->view->sons = $this->tree->getTaskSons($rootID, $productID, $currentModuleID);
|
|
$this->view->parentModules = $parentModules;
|
|
$this->view->currentModuleID = $currentModuleID;
|
|
$this->view->tree = $this->tree->getTaskStructure($rootID, $productID);
|
|
$this->view->canBeChanged = common::canModify('execution', $execution); // Determines whether an object is editable.
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Edit a module.
|
|
*
|
|
* @param int $moduleID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function edit($moduleID, $type, $branch = 0)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$this->tree->update($moduleID);
|
|
echo js::alert($this->lang->tree->successSave);
|
|
die(js::reload('parent'));
|
|
}
|
|
|
|
$module = $this->tree->getById($moduleID);
|
|
|
|
if($type == 'task')
|
|
{
|
|
$optionMenu = $this->tree->getTaskOptionMenu($module->root);
|
|
$this->view->optionMenu = $optionMenu;
|
|
}
|
|
else
|
|
{
|
|
$this->view->optionMenu = $this->tree->getOptionMenu($module->root, $module->type, 0, $branch);
|
|
}
|
|
if($type == 'doc') $this->view->libs = $this->loadModel('doc')->getLibs('all', $extra = 'withObject');
|
|
|
|
$this->view->module = $module;
|
|
$this->view->type = $type;
|
|
$this->view->branch = $branch;
|
|
$this->view->users = $this->loadModel('user')->getPairs('noclosed|nodeleted', $module->owner);
|
|
|
|
$showProduct = strpos('story|bug|case', $type) !== false ? true : false;
|
|
$this->view->showProduct = $showProduct;
|
|
if($showProduct)
|
|
{
|
|
$product = $this->loadModel('product')->getById($module->root);
|
|
if($product->type != 'normal') $this->view->branches = $this->loadModel('branch')->getPairs($module->root);
|
|
$this->view->product = $product;
|
|
$this->view->products = $this->product->getPairs('', $product->program);
|
|
}
|
|
|
|
/* Remove self and childs from the $optionMenu. Because it's parent can't be self or childs. */
|
|
$childs = $this->tree->getAllChildId($moduleID);
|
|
foreach($childs as $childModuleID) unset($this->view->optionMenu[$childModuleID]);
|
|
|
|
die($this->display());
|
|
}
|
|
|
|
/**
|
|
* Fix path, grades.
|
|
*
|
|
* @param string $root
|
|
* @param string $type
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function fix($root, $type)
|
|
{
|
|
$this->tree->fixModulePath($root, $type);
|
|
die(js::alert($this->lang->tree->successFixed) . js::reload('parent'));
|
|
}
|
|
|
|
/**
|
|
* Update modules' orders.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function updateOrder()
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$this->tree->updateOrder($_POST['orders']);
|
|
die(js::reload('parent'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Manage child modules.
|
|
*
|
|
* @param int $rootID
|
|
* @param string $viewType
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function manageChild($rootID, $viewType)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$this->tree->manageChild($rootID, $viewType);
|
|
|
|
if($viewType == 'doc' and isonlybody()) die(js::reload('parent.parent'));
|
|
if(isonlybody()) die(js::closeModal('parent.parent', '', "function(){parent.parent.$('a.refresh').click()}"));
|
|
|
|
die(js::reload('parent'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Delete a module.
|
|
*
|
|
* @param int $rootID
|
|
* @param int $moduleID
|
|
* @param string $confirm yes|no
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function delete($rootID, $moduleID, $confirm = 'no')
|
|
{
|
|
if($confirm == 'no')
|
|
{
|
|
$module = $this->tree->getByID($moduleID);
|
|
$confirmLang = $this->lang->tree->confirmDelete;
|
|
if($module->type == 'line') $confirmLang = $this->lang->tree->confirmDeleteLine;
|
|
if($module->type == 'host') $confirmLang = $this->lang->tree->confirmDeleteHost;
|
|
die(js::confirm($confirmLang, $this->createLink('tree', 'delete', "rootID=$rootID&moduleID=$moduleID&confirm=yes")));
|
|
}
|
|
else
|
|
{
|
|
$result = $this->tree->delete($moduleID);
|
|
if(!$result) die();
|
|
|
|
die(js::reload('parent'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* AJAX: Get the option menu of modules.
|
|
*
|
|
* @param int $rootID
|
|
* @param string $viewType
|
|
* @param int $branch
|
|
* @param int $rootModuleID
|
|
* @param string $returnType
|
|
* @param string $fieldID
|
|
* @param bool $needManage
|
|
* @access public
|
|
* @return string the html select string.
|
|
*/
|
|
public function ajaxGetOptionMenu($rootID, $viewType = 'story', $branch = 0, $rootModuleID = 0, $returnType = 'html', $fieldID = '', $needManage = false, $extra = '')
|
|
{
|
|
if($viewType == 'task')
|
|
{
|
|
$optionMenu = $this->tree->getTaskOptionMenu($rootID, 0, 0, $extra);
|
|
}
|
|
else
|
|
{
|
|
$optionMenu = $this->tree->getOptionMenu($rootID, $viewType, $rootModuleID, $branch);
|
|
}
|
|
if($returnType == 'html')
|
|
{
|
|
//Code for task #5081.
|
|
if($viewType == 'line')
|
|
{
|
|
$lineID = $this->dao->select('id')->from(TABLE_MODULE)->where('type')->eq('line')->andWhere('deleted')->eq(0)->orderBy('id_desc')->limit(1)->fetch('id');
|
|
$output = html::select("line", $optionMenu, $lineID, "class='form-control'");
|
|
$output .= "<span class='input-group-addon' style='border-radius: 0px 2px 2px 0px; border-right-width: 1px;'>";
|
|
$output .= html::a($this->createLink('tree', 'browse', "rootID=$rootID&view=$viewType¤tModuleID=0&branch=$branch", '', true), $viewType == 'line' ? $this->lang->tree->manageLine : $this->lang->tree->manage, '', "class='text-primary' data-toggle='modal' data-type='iframe' data-width='95%'");
|
|
$output .= '</span>';
|
|
}
|
|
else
|
|
{
|
|
$changeFunc = '';
|
|
if($viewType == 'task' or $viewType == 'bug' or $viewType == 'case') $changeFunc = "onchange='loadModuleRelated()'";
|
|
$field = $fieldID ? "modules[$fieldID]" : 'module';
|
|
$output = html::select("$field", $optionMenu, '', "class='form-control' $changeFunc");
|
|
if(count($optionMenu) == 1 and $needManage)
|
|
{
|
|
$output .= "<span class='input-group-addon'>";
|
|
$output .= html::a($this->createLink('tree', 'browse', "rootID=$rootID&view=$viewType¤tModuleID=0&branch=$branch", '', true), $this->lang->tree->manage, '', "class='text-primary' data-toggle='modal' data-type='iframe' data-width='95%'");
|
|
$output .= ' ';
|
|
$output .= html::a("javascript:void(0)", $this->lang->refresh, '', "class='refresh' onclick='loadProductModules($rootID)'");
|
|
$output .= '</span>';
|
|
}
|
|
}
|
|
|
|
die($output);
|
|
}
|
|
if($returnType == 'mhtml')
|
|
{
|
|
$changeFunc = '';
|
|
if($viewType == 'task' or $viewType == 'bug' or $viewType == 'case') $changeFunc = "onchange='loadModuleRelated()'";
|
|
$field = $fieldID ? "modules[$fieldID]" : 'module';
|
|
$output = html::select("$field", $optionMenu, '', "class='input' $changeFunc");
|
|
die($output);
|
|
}
|
|
if($returnType == 'json') die(json_encode($optionMenu));
|
|
}
|
|
|
|
/**
|
|
* Ajax get drop menu.
|
|
*
|
|
* @param int $rootID
|
|
* @param string $module
|
|
* @param string $method
|
|
* @param string $extra
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function ajaxGetDropMenu($rootID, $module, $method, $extra = '')
|
|
{
|
|
$this->view->productID = $rootID;
|
|
$this->view->module = $module;
|
|
$this->view->method = $method;
|
|
$this->view->extra = $extra;
|
|
|
|
$viewType = $module;
|
|
if($module == 'bug') $viewType = 'bug';
|
|
if($module == 'testcase') $viewType = 'case';
|
|
|
|
$modules = $this->tree->getOptionMenu($rootID, $viewType);
|
|
$modulesPinyin = common::convert2Pinyin($modules);
|
|
|
|
$this->view->link = $viewType == 'caselib' ? helper::createLink($module, $method, "rootID=%s&type=byModule¶m=%s") : helper::createLink($module, $method, "rootID=%s&branch=&type=byModule¶m=%s");
|
|
$this->view->viewType = $viewType;
|
|
$this->view->modules = $modules;
|
|
$this->view->modulesPinyin = $modulesPinyin;
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* AJAX: get modules.
|
|
*
|
|
* @param int $productID
|
|
* @param string $viewType
|
|
* @param int $branchID
|
|
* @param int $number
|
|
* @access public
|
|
* @return string the html select string.
|
|
*/
|
|
public function ajaxGetModules($productID, $viewType = 'story', $branchID, $number)
|
|
{
|
|
$modules = $this->tree->getOptionMenu($productID, $viewType, $startModuleID = 0, $branchID);
|
|
|
|
$moduleName = $viewType == 'bug' ? "modules[$number]" : "module[$number]";
|
|
$modules = empty($modules) ? array('' => '') : $modules;
|
|
die(html::select($moduleName, $modules, '', 'class=form-control'));
|
|
}
|
|
|
|
/**
|
|
* AJAX: get a module's son modules.
|
|
*
|
|
* @param int $moduleID
|
|
* @param int $rootID
|
|
* @param string $type
|
|
* @access public
|
|
* @return string json_encoded modules.
|
|
*/
|
|
public function ajaxGetSonModules($moduleID, $rootID = 0, $type = 'story')
|
|
{
|
|
$modules = $this->dao->select('id,name,short')->from(TABLE_MODULE)
|
|
->where('root')->eq($rootID)
|
|
->andWhere('parent')->eq((int)$moduleID)
|
|
->andWhere('type')->eq($type)
|
|
->andWhere('deleted')->eq(0)
|
|
->fetchAll('id');
|
|
die(json_encode($modules));
|
|
}
|
|
}
|