browsetask.php 363 B

1234567891011
  1. <?php
  2. helper::importControl('tree');
  3. class myTree extends tree
  4. {
  5. public function browseTask($rootID, $productID = 0, $currentModuleID = 0)
  6. {
  7. $this->lang->kanban->menu->execution['subModule'] = 'tree';
  8. $this->lang->kanban->menu->story['subModule'] = '';
  9. return parent::browseTask($rootID, $productID, $currentModuleID);
  10. }
  11. }