kanban.php 580 B

1234567891011121314151617
  1. <?php
  2. helper::importControl('execution');
  3. class myExecution extends execution
  4. {
  5. public function kanban($executionID, $browseType = 'all', $orderBy = 'id_asc', $groupBy = 'default')
  6. {
  7. $this->app->loadLang('kanban');
  8. common::setMenuVars('execution', $executionID);
  9. $currentMethod = $this->app->methodName;
  10. $execution = $this->execution->getById($executionID);
  11. $this->loadModel('project')->setMenu($execution->project);
  12. $browseType = 'task';
  13. parent::kanban($executionID, $browseType, $orderBy, $groupBy);
  14. }
  15. }