本文整理汇总了PHP中ilCtrl::setReturn方法的典型用法代码示例。如果您正苦于以下问题:PHP ilCtrl::setReturn方法的具体用法?PHP ilCtrl::setReturn怎么用?PHP ilCtrl::setReturn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ilCtrl
的用法示例。
在下文中一共展示了ilCtrl::setReturn方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: switch
/**
* execute command
*/
public function &executeCommand()
{
global $ilCtrl;
// determine next class in the call structure
$next_class = $this->ilCtrl->getNextClass($this);
switch ($next_class) {
case 'ilrepositorysearchgui':
include_once './Services/Search/classes/class.ilRepositorySearchGUI.php';
$rep_search =& new ilRepositorySearchGUI();
$this->ilCtrl->setReturn($this, 'perminfo');
$this->ilCtrl->forwardCommand($rep_search);
break;
default:
$cmd = $this->ilCtrl->getCmd();
$this->{$cmd}();
break;
}
}
示例2: executeCommand
/**
*
*/
public function executeCommand()
{
$next_class = $this->ctrl->getNextClass($this);
$cmd = $this->ctrl->getCmd();
switch ($next_class) {
case 'ilrepositorysearchgui':
include_once 'Services/Search/classes/class.ilRepositorySearchGUI.php';
$rep_search = new ilRepositorySearchGUI();
$rep_search->setCallback($this, 'addModerator');
$this->ctrl->setReturn($this, 'showModerators');
$this->ctrl->forwardCommand($rep_search);
break;
default:
if (!$cmd) {
$cmd = 'showModerators';
}
$this->{$cmd}();
break;
}
}