本文整理汇总了PHP中MainController::setOptions方法的典型用法代码示例。如果您正苦于以下问题:PHP MainController::setOptions方法的具体用法?PHP MainController::setOptions怎么用?PHP MainController::setOptions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MainController
的用法示例。
在下文中一共展示了MainController::setOptions方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setOptions
protected function setOptions()
{
if (isset($this->_vars[0])) {
switch (is_numeric($this->_vars[0])) {
case true:
$this->setOption('id', $this->_vars[0]);
break;
case false:
$this->setOption('name', $this->_vars[0]);
break;
}
}
switch ($this->_action) {
case 'open':
$start = isset($this->_vars[1]) && is_numeric($this->_vars[1]) ? $this->_vars[1] : TFRouter::getParam('start');
$limit = isset($this->_vars[2]) && is_numeric($this->_vars[2]) ? $this->_vars[2] : TFRouter::getParam('limit');
$this->setOption('start', $start);
$this->setOption('limit', $limit);
break;
case 'close':
$this->setOption('close', true);
$this->setOption('action', 'restrict');
break;
}
parent::setOptions();
}
示例2: setOptions
public function setOptions()
{
switch ($this->_action) {
case 'create':
$this->setOption('new-permissions', array(TFRouter::getParam('new-permission')));
break;
case 'open':
if (isset($this->_vars[0])) {
switch (is_numeric($this->_vars[0])) {
case true:
$this->setOption('id', $this->_vars[0]);
break;
case false:
$this->setOption('name', $this->_vars[0]);
break;
}
}
break;
}
parent::setOptions();
}
示例3: setOptions
protected function setOptions()
{
if (isset($this->_vars[0])) {
if (is_numeric($this->_vars[0])) {
$this->setOption('id', array_shift($this->_vars));
} elseif (is_string($this->_vars[0])) {
$this->setOption('name', array_shift($this->_vars));
}
}
switch ($this->_action) {
case 'new':
if (isset($this->_vars[0])) {
while (count($this->_vars) > 0) {
$name = array_shift($this->_vars);
$value = array_shift($this->_vars);
$this->setOption($name, $value);
}
}
break;
}
parent::setOptions();
}