2023-05-16 10:47:08 +08:00

12 lines
363 B
PHP
Executable File

<?php
helper::importControl('tree');
class myTree extends tree
{
public function browseTask($rootID, $productID = 0, $currentModuleID = 0)
{
$this->lang->kanban->menu->execution['subModule'] = 'tree';
$this->lang->kanban->menu->story['subModule'] = '';
return parent::browseTask($rootID, $productID, $currentModuleID);
}
}