* Finish task#41229.
This commit is contained in:
@@ -1016,10 +1016,10 @@ class my extends control
|
||||
|
||||
$this->view->URSRList = $this->loadModel('custom')->getURSRPairs();
|
||||
$this->view->URSR = $this->setting->getURSR();
|
||||
$this->view->programLink = isset($this->config->programLink) ? $this->config->programLink : 'program-browse';
|
||||
$this->view->productLink = isset($this->config->productLink) ? $this->config->productLink : 'product-all';
|
||||
$this->view->projectLink = isset($this->config->projectLink) ? $this->config->projectLink : 'project-browse';
|
||||
//$this->view->executionLink = isset($this->config->executionLink) ? $this->config->executionLink : 'execution-task';
|
||||
$this->view->programLink = isset($this->config->programLink) ? $this->config->programLink : 'program-browse';
|
||||
$this->view->productLink = isset($this->config->productLink) ? $this->config->productLink : 'product-all';
|
||||
$this->view->projectLink = isset($this->config->projectLink) ? $this->config->projectLink : 'project-browse';
|
||||
$this->view->executionLink = isset($this->config->executionLink) ? $this->config->executionLink : 'execution-executionkanban';
|
||||
$this->view->preferenceSetted = isset($this->config->preferenceSetted) ? true : false;
|
||||
|
||||
$this->display();
|
||||
|
||||
@@ -109,9 +109,8 @@ $lang->my->projectLinkList['project-index'] = '默认进入最近一个项
|
||||
$lang->my->executionLinkList = array();
|
||||
if($config->systemMode == 'new')
|
||||
{
|
||||
$lang->my->executionLinkList['execution-task'] = '默认进入最近一个执行的任务列表,可以查看当前迭代下的任务信息';
|
||||
$lang->my->executionLinkList['execution-index'] = '默认进入执行仪表盘,可以了解所有执行的统计数据和概况';
|
||||
$lang->my->executionLinkList['execution-all'] = '默认进入执行列表,可以查看所有的执行';
|
||||
$lang->my->executionLinkList['execution-task'] = '默认进入最近一个执行的任务列表,可以查看当前迭代下的任务信息';
|
||||
$lang->my->executionLinkList['execution-executionkanban'] = '默认进入执行看板,可以查看所有项目的执行情况';
|
||||
}
|
||||
if($config->systemMode == 'classic') $lang->my->executionLinkList['execution-task'] = "默认进入最近一个{$lang->executionCommon}的任务列表,可以查看当前{$lang->executionCommon}下的任务信息";
|
||||
|
||||
|
||||
@@ -57,18 +57,16 @@ html,body {height: 100%;}
|
||||
<th><?php echo $lang->my->projectLink;?></th>
|
||||
<td><?php echo html::select('projectLink', $lang->my->projectLinkList, $projectLink, "class='form-control chosen'");?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?php echo $lang->my->executionLink;?></th>
|
||||
<td><?php echo html::select('executionLink', $lang->my->executionLinkList, $executionLink, "class='form-control chosen'");?></td>
|
||||
</tr>
|
||||
<?php else:?>
|
||||
<tr>
|
||||
<th><?php echo $lang->my->executionLink;?></th>
|
||||
<td><?php echo html::select('executionLink', $lang->my->executionLinkList, 'execution-task', "class='form-control chosen'");?></td>
|
||||
</tr>
|
||||
<?php endif;?>
|
||||
<!--
|
||||
<tr>
|
||||
<th><?php echo $lang->my->executionLink;?></th>
|
||||
<td><?php echo html::select('executionLink', $lang->my->executionLinkList, $executionLink, "class='form-control chosen'");?></td>
|
||||
</tr>
|
||||
-->
|
||||
<tr>
|
||||
<td colspan='2' class='text-center form-actions'><?php echo html::submitButton();?></td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user