Prevent people to remove swimlanes that contains tasks
This commit is contained in:
@@ -20,7 +20,7 @@ class ColumnController extends BaseController
|
||||
public function index()
|
||||
{
|
||||
$project = $this->getProject();
|
||||
$columns = $this->columnModel->getAllWithTasksCount($project['id']);
|
||||
$columns = $this->columnModel->getAllWithTaskCount($project['id']);
|
||||
|
||||
$this->response->html($this->helper->layout->project('column/index', array(
|
||||
'columns' => $columns,
|
||||
|
||||
@@ -16,7 +16,7 @@ class ProjectOverviewController extends BaseController
|
||||
public function show()
|
||||
{
|
||||
$project = $this->getProject();
|
||||
$columns = $this->columnModel->getAllWithTasksCount($project['id']);
|
||||
$columns = $this->columnModel->getAllWithTaskCount($project['id']);
|
||||
|
||||
$this->response->html($this->helper->layout->app('project_overview/show', array(
|
||||
'project' => $project,
|
||||
|
||||
@@ -18,7 +18,7 @@ class ProjectViewController extends BaseController
|
||||
public function show()
|
||||
{
|
||||
$project = $this->getProject();
|
||||
$columns = $this->columnModel->getAllWithTasksCount($project['id']);
|
||||
$columns = $this->columnModel->getAllWithTaskCount($project['id']);
|
||||
|
||||
$this->response->html($this->helper->layout->project('project_view/show', array(
|
||||
'project' => $project,
|
||||
|
||||
@@ -40,10 +40,11 @@ class SwimlaneController extends BaseController
|
||||
public function index()
|
||||
{
|
||||
$project = $this->getProject();
|
||||
$swimlanes = $this->swimlaneModel->getAllWithTaskCount($project['id']);
|
||||
|
||||
$this->response->html($this->helper->layout->project('swimlane/index', array(
|
||||
'active_swimlanes' => $this->swimlaneModel->getAllByStatus($project['id'], SwimlaneModel::ACTIVE),
|
||||
'inactive_swimlanes' => $this->swimlaneModel->getAllByStatus($project['id'], SwimlaneModel::INACTIVE),
|
||||
'active_swimlanes' => $swimlanes['active'],
|
||||
'inactive_swimlanes' => $swimlanes['inactive'],
|
||||
'project' => $project,
|
||||
'title' => t('Swimlanes')
|
||||
)));
|
||||
|
||||
Reference in New Issue
Block a user