2023-05-16 10:50:42 +08:00

41 lines
916 B
PHP

<?php
public function delete($moduleID, $null = null)
{
return $this->loadExtension('zentaobiz')->delete($moduleID);
}
public function getHostTreeMenu()
{
return $this->loadExtension('host')->getHostTreeMenu();
}
public function createHostLink($type, $module)
{
return $this->loadExtension('host')->createHostLink($type, $module);
}
public function getHostStructure()
{
return $this->loadExtension('host')->getHostStructure();
}
public function getHostSons($moduleID)
{
return $this->loadExtension('host')->getHostSons($moduleID);
}
public function getHostOptionMenu()
{
return $this->loadExtension('host')->getHostOptionMenu();
}
public function getFeedbackTreeMenu($userFunc)
{
return $this->loadExtension('zentaobiz')->getFeedbackTreeMenu($userFunc);
}
public function getTicketTreeMenu($userFunc)
{
return $this->loadExtension('zentaobiz')->getTicketTreeMenu($userFunc);
}