本文整理汇总了PHP中GenericPage::notFound方法的典型用法代码示例。如果您正苦于以下问题:PHP GenericPage::notFound方法的具体用法?PHP GenericPage::notFound怎么用?PHP GenericPage::notFound使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GenericPage
的用法示例。
在下文中一共展示了GenericPage::notFound方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: notFound
public function notFound()
{
if ($this->mode != CACHE_TYPE_TOOLTIP) {
return parent::notFound(Lang::game('spell'), Lang::spell('notFound'));
}
header('Content-type: application/x-javascript; charset=utf-8');
echo $this->generateTooltip(true);
exit;
}
示例2: notFound
public function notFound()
{
if ($this->mode != CACHE_TYPE_TOOLTIP) {
return parent::notFound(Util::ucFirst(Lang::game('profile')), '[NNF]profile or char doesn\'t exist');
}
header('Content-type: application/x-javascript; charset=utf-8');
echo $this->generateTooltip(true);
exit;
}
示例3: notFound
public function notFound($title = '', $msg = '')
{
if ($this->mode != CACHE_TYPE_TOOLTIP) {
return parent::notFound($title ?: Lang::game('quest'), $msg ?: Lang::quest('notFound'));
}
header('Content-type: application/x-javascript; charset=utf-8');
echo $this->generateTooltip(true);
exit;
}