* @package stage * @version $Id: control.php 5107 2013-07-12 01:46:12Z chencongzhi520@gmail.com $ * @link https://www.zentao.net */ class stage extends control { /** * 瀑布模型阶段列表页。 * Waterfall model stage list page. * * @param string $orderBy * @param string $type waterfall|waterfallplus * @access public * @return void */ public function browse(string $orderBy = "id_asc", string $type = 'waterfall') { if($type == 'waterfallplus') $this->locate($this->createLink('stage', 'plusBrowse', "orderBy={$orderBy}&type=waterfallplus")); $this->stage->setMenu($type); $this->view->title = $this->lang->stage->common . $this->lang->colon . $this->lang->stage->browse; $this->view->stages = $this->stage->getStages($orderBy, 0, $type); $this->view->orderBy = $orderBy; $this->view->type = $type; $this->display(); } /** * 融合瀑布模型阶段列表页。 * Waterfall plus model stage list page. * * @param string $orderBy * @param string $type waterfall|waterfallplus * @access public * @return void */ public function plusBrowse($orderBy = "id_asc", $type = 'waterfallplus') { if($type == 'waterfall') $this->locate($this->createLink('stage', 'browse', "orderBy={$orderBy}&type=waterfall")); $this->stage->setMenu($type); $this->view->stages = $this->stage->getStages($orderBy, 0, $type); $this->view->orderBy = $orderBy; $this->view->type = $type; $this->view->title = $this->lang->stage->common . $this->lang->colon . $this->lang->stage->browse; $this->display('stage', 'browse'); } /** * 创建一个阶段。 * Create a stage. * * @param string $type waterfall|waterfallplus * @access public * @return void */ public function create(string $type = 'waterfall') { if($_POST) { $stageData = form::data()->setDefault('projectType', $type)->get(); $stageID = $this->stage->create($stageData, $type); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); $this->loadModel('action')->create('stage', $stageID, 'Opened'); return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'closeModal' => true, 'load' => true)); } $this->view->title = $this->lang->stage->common . $this->lang->colon . $this->lang->stage->create; $this->display(); } /** * 批量创建阶段。 * Batch create stages. * * @param string $type waterfall|waterfallplus * @access public * @return void */ public function batchCreate(string $type = 'waterfall') { $this->stage->setMenu($type); if($_POST) { $stages = form::batchData()->setDefault('projectType', $type)->get(); $this->stage->batchCreate($type, $stages); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'closeModal' => true, 'load' => inlink($type == 'waterfall' ? 'browse' : 'plusBrowse', "orderBy=id_asc&type=$type"))); } $this->view->title = $this->lang->stage->common . $this->lang->colon . $this->lang->stage->batchCreate; $this->display(); } /** * 编辑一个阶段。 * Edit a stage. * * @param int $stageID * @access public * @return void */ public function edit(int $stageID = 0) { $stage = $this->stage->getByID($stageID); $this->stage->setMenu($stage->projectType); if($_POST) { $stageData = form::data()->get(); $changes = $this->stage->update($stageID, $stageData); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); $actionID = $this->loadModel('action')->create('stage', $stageID, 'Edited'); if(!empty($changes)) $this->action->logHistory($actionID, $changes); return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'closeModal' => true, 'load' => true)); } $this->view->title = $this->lang->stage->common . $this->lang->colon . $this->lang->stage->edit; $this->view->stage = $stage; $this->display(); } /** * 设置阶段的类型。 * Custom settings stage type. * * @param string lang2Set * @access public * @return void */ public function setType(string $lang2Set = '') { $this->loadModel('custom'); if(empty($lang2Set)) $lang2Set = $this->app->getClientLang(); $currentLang = $this->app->getClientLang(); $fieldList = zget($this->lang->stage, 'typeList', ''); if($lang2Set == 'all') { $fieldList = array(); $items = $this->custom->getItems("lang=all&module=stage§ion=typeList&vision={$this->config->vision}"); foreach($items as $key => $item) $fieldList[$key] = $item->value; } /* Check whether the current language has been customized. */ $dbFields = $this->custom->getItems("lang=$lang2Set&module=stage§ion=typeList&vision={$this->config->vision}"); if(empty($dbFields)) $dbFields = $this->custom->getItems("lang=" . ($lang2Set == $currentLang ? 'all' : $currentLang) . "&module=stage§ion=typeList"); if($dbFields) { $dbField = reset($dbFields); if($lang2Set != $dbField->lang) { $lang2Set = $dbField->lang; foreach($fieldList as $key => $value) { if(isset($dbFields[$key]) && $value != $dbFields[$key]->value) $fieldList[$key] = $dbFields[$key]->value; } } } if($_POST) { $data = form::data()->get(); $this->custom->deleteItems("lang={$this->post->lang}&module=stage§ion=typeList"); if($data->lang == 'all') $this->custom->deleteItems("lang={$currentLang}&module=stage§ion=typeList"); foreach($data->keys as $index => $key) { $value = $data->values[$index]; if(!$value || !$key) continue; $this->custom->setItem("{$data->lang}.stage.typeList.{$key}", $value); } return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'load' => true)); } $this->view->title = $this->lang->stage->common . $this->lang->colon . $this->lang->stage->setType; $this->view->currentLang = $currentLang; $this->view->lang2Set = !empty($lang2Set) ? $lang2Set : $lang; $this->view->fieldList = $fieldList; $this->display(); } /** * 删除一个阶段。 * Delete a stage. * * @param int $stageID * @access public * @return void */ public function delete(int $stageID) { $stage = $this->stage->getByID($stageID); $this->stage->delete(TABLE_STAGE, $stageID); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); return $this->sendSuccess(array('closeModal' => true, 'load' => true)); } }