本文整理汇总了PHP中FOFInput::getInt方法的典型用法代码示例。如果您正苦于以下问题:PHP FOFInput::getInt方法的具体用法?PHP FOFInput::getInt怎么用?PHP FOFInput::getInt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FOFInput
的用法示例。
在下文中一共展示了FOFInput::getInt方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: populateSavestate
/**
* Initialises the _savestate variable
*
* @param integer $defaultSaveState The default value for the savestate
*
* @return void
*/
public function populateSavestate($defaultSaveState = -999)
{
if (is_null($this->_savestate)) {
$savestate = $this->input->getInt('savestate', $defaultSaveState);
if ($savestate == -999) {
$savestate = true;
}
$this->savestate($savestate);
}
}
示例2: getItemidURLSuffix
/**
* Gets a URL suffix with the Itemid parameter. If it's not the front-end of the site, or if
* there is no Itemid set it returns an empty string.
*
* @return string The &Itemid=123 URL suffix, or an empty string if Itemid is not applicable
*/
public function getItemidURLSuffix()
{
if (FOFPlatform::getInstance()->isFrontend() && $this->input->getCmd('Itemid', 0) != 0) {
return '&Itemid=' . $this->input->getInt('Itemid', 0);
} else {
return '';
}
}