* Finish task#41780.
This commit is contained in:
@@ -212,7 +212,8 @@ $lang->calendar = 'Calendar';
|
||||
|
||||
$lang->my->work = 'Work';
|
||||
|
||||
$lang->project->list = 'Project List';
|
||||
$lang->project->list = 'Project List';
|
||||
$lang->project->kanban = 'Project Kanban';
|
||||
|
||||
$lang->execution->executionKanban = "{$lang->execution->common} Kanban";
|
||||
$lang->execution->all = "{$lang->execution->common} List";
|
||||
|
||||
@@ -180,6 +180,7 @@ $lang->product->dividerMenu = $config->URAndSR ? ',story,requirement,settings,'
|
||||
/* Project menu. */
|
||||
$lang->project->homeMenu = new stdclass();
|
||||
$lang->project->homeMenu->browse = array('link' => ($config->systemMode == 'new' ? $lang->project->list : $lang->executionCommon) . '|project|browse|', 'alias' => 'batchedit,create');
|
||||
if($config->systemMode == 'new') $lang->project->homeMenu->kanban = array('link' => "{$lang->project->kanban}|project|kanban|");
|
||||
|
||||
/* Scrum menu. */
|
||||
$lang->scrum->menu = new stdclass();
|
||||
|
||||
@@ -212,7 +212,8 @@ $lang->calendar = '日程';
|
||||
|
||||
$lang->my->work = '待处理';
|
||||
|
||||
$lang->project->list = '项目列表';
|
||||
$lang->project->list = '项目列表';
|
||||
$lang->project->kanban = '项目看板';
|
||||
|
||||
$lang->execution->executionKanban = "{$lang->execution->common}看板";
|
||||
$lang->execution->all = "{$lang->execution->common}列表";
|
||||
|
||||
@@ -212,7 +212,8 @@ $lang->calendar = '日程';
|
||||
|
||||
$lang->my->work = '待處理';
|
||||
|
||||
$lang->project->list = '項目列表';
|
||||
$lang->project->list = '項目列表';
|
||||
$lang->project->kanban = '項目看板';
|
||||
|
||||
$lang->execution->executionKanban = "{$lang->execution->common}看板";
|
||||
$lang->execution->all = "{$lang->execution->common}列表";
|
||||
|
||||
@@ -204,6 +204,7 @@ if($config->systemMode == 'new')
|
||||
$lang->resource->project = new stdclass();
|
||||
$lang->resource->project->index = 'index';
|
||||
$lang->resource->project->browse = 'browse';
|
||||
$lang->resource->project->kanban = 'kanban';
|
||||
$lang->resource->project->programTitle = 'moduleOpen';
|
||||
$lang->resource->project->create = 'create';
|
||||
$lang->resource->project->edit = 'edit';
|
||||
@@ -241,12 +242,13 @@ if($config->systemMode == 'new')
|
||||
|
||||
$lang->project->methodOrder[0] = 'index';
|
||||
$lang->project->methodOrder[5] = 'browse';
|
||||
$lang->project->methodOrder[10] = 'projectTitle';
|
||||
$lang->project->methodOrder[15] = 'create';
|
||||
$lang->project->methodOrder[20] = 'edit';
|
||||
$lang->project->methodOrder[25] = 'batchEdit';
|
||||
$lang->project->methodOrder[30] = 'group';
|
||||
$lang->project->methodOrder[35] = 'createGroup';
|
||||
$lang->project->methodOrder[10] = 'kanban';
|
||||
$lang->project->methodOrder[15] = 'projectTitle';
|
||||
$lang->project->methodOrder[20] = 'create';
|
||||
$lang->project->methodOrder[25] = 'edit';
|
||||
$lang->project->methodOrder[30] = 'batchEdit';
|
||||
$lang->project->methodOrder[35] = 'group';
|
||||
$lang->project->methodOrder[40] = 'createGroup';
|
||||
$lang->project->methodOrder[45] = 'managePriv';
|
||||
$lang->project->methodOrder[50] = 'manageMembers';
|
||||
$lang->project->methodOrder[55] = 'manageGroupMember';
|
||||
|
||||
@@ -292,6 +292,17 @@ class project extends control
|
||||
$this->display();
|
||||
}
|
||||
|
||||
/**
|
||||
* Project kanban.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function kanban()
|
||||
{
|
||||
$this->display();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set module display mode.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user