本文整理汇总了PHP中GenericPage类的典型用法代码示例。如果您正苦于以下问题:PHP GenericPage类的具体用法?PHP GenericPage怎么用?PHP GenericPage使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了GenericPage类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($pageCall, $pageParam)
{
$this->filterObj = new ItemsetListFilter();
$this->getCategoryFromUrl($pageParam);
parent::__construct($pageCall, $pageParam);
$this->name = Util::ucFirst(Lang::game('itemsets'));
}
示例2: __construct
public function __construct($pageCall, $pageParam)
{
switch ($pageParam) {
case 'screenshots':
$this->reqUGroup = U_GROUP_STAFF | U_GROUP_SCREENSHOT;
$this->generator = 'handleScreenshots';
$this->tpl = 'admin/screenshots';
array_push($this->path, 1, 5);
$this->name = 'Screenshot Manager';
break;
case 'phpinfo':
$this->reqUGroup = U_GROUP_ADMIN | U_GROUP_DEV;
$this->generator = 'handlePhpInfo';
$this->tpl = 'list-page-generic';
array_push($this->path, 2, 21);
$this->name = 'PHP Information';
break;
case 'siteconfig':
$this->reqUGroup = U_GROUP_ADMIN | U_GROUP_DEV;
$this->generator = 'handleConfig';
$this->tpl = 'list-page-generic';
array_push($this->path, 2, 18);
$this->name = 'Site Configuration';
break;
default:
// error out through unset template
}
parent::__construct($pageCall, $pageParam);
}
示例3: __construct
public function __construct($pageCall, $pageParam)
{
$this->filterObj = new EnchantmentListFilter();
$this->getCategoryFromUrl($pageParam);
parent::__construct($pageCall, $pageParam);
$this->name = Util::ucFirst(Lang::game('enchantments'));
$this->subCat = $pageParam !== null ? '=' . $pageParam : '';
}
示例4: __construct
public function __construct($pageCall, $pageParam)
{
$this->filterObj = new CreatureListFilter();
$this->getCategoryFromUrl($pageParam);
parent::__construct($pageCall, $pageParam);
$this->name = Util::ucFirst(Lang::game('npcs'));
$this->subCat = $pageParam ? '=' . $pageParam : '';
}
示例5: __construct
public function __construct($pageCall, $pageParam)
{
$this->filterObj = new SpellListFilter();
$this->getCategoryFromUrl($pageParam);
parent::__construct($pageCall, $pageParam);
$this->name = Util::ucFirst(Lang::game('spells'));
$this->subCat = $pageParam !== null ? '=' . $pageParam : '';
$this->filter = ['classPanel' => false, 'glyphPanel' => false];
}
示例6: __construct
public function __construct($pageCall, $pageParam)
{
@(include 'datasets/ProfilerExampleChar');
// tmp char data
$this->character = $character;
// soo ..
// we require a list and filter-handler for profiles
parent::__construct($pageCall, $pageParam);
}
示例7: display
public function display($override = '')
{
if ($this->rss) {
header('Content-Type: application/rss+xml; charset=UTF-8');
die($this->generateRSS());
} else {
return parent::display($override);
}
}
示例8: __construct
public function __construct($pageCall, $id)
{
parent::__construct($pageCall, $id);
$this->typeId = intVal($id);
$this->subject = new CurrencyList(array(['id', $this->typeId]));
if ($this->subject->error) {
$this->notFound(Lang::game('currency'), Lang::currency('notFound'));
}
$this->name = $this->subject->getField('name', true);
}
示例9: __construct
public function __construct($pageCall, $id)
{
parent::__construct($pageCall, $id);
$this->typeId = intVal($id);
$this->subject = new EmoteList(array(['id', $this->typeId]));
if ($this->subject->error) {
$this->notFound(Util::ucFirst(Lang::game('emote')), Lang::emote('notFound'));
}
$this->name = Util::ucFirst($this->subject->getField('cmd'));
}
示例10: __construct
public function __construct($pageCall, $pageParam)
{
$this->validCats = Util::$questClasses;
// needs reviewing (not allowed to set this as default)
$this->filterObj = new QuestListFilter();
$this->getCategoryFromUrl($pageParam);
parent::__construct($pageCall, $pageParam);
$this->name = Util::ucFirst(Lang::game('quests'));
$this->subCat = $pageParam ? '=' . $pageParam : '';
}
示例11: __construct
public function __construct($pageCall, $id)
{
parent::__construct($pageCall, $id);
$this->typeId = intVal($id);
$this->subject = new EnchantmentList(array(['id', $this->typeId]));
if ($this->subject->error) {
$this->notFound(Util::ucFirst(Lang::game('enchantment')), Lang::enchantment('notFound'));
}
$this->extendGlobalData($this->subject->getJSGlobals());
$this->name = Util::ucFirst($this->subject->getField('name', true));
}
示例12: __construct
public function __construct($pageCall, $id)
{
parent::__construct($pageCall, $id);
$this->typeId = intVal($id);
$this->subject = new SkillList(array(['id', $this->typeId]));
if ($this->subject->error) {
$this->notFound(Lang::game('skill'), Lang::skill('notFound'));
}
$this->name = $this->subject->getField('name', true);
$this->cat = $this->subject->getField('typeCat');
}
示例13: __construct
public function __construct($pageCall, $id)
{
parent::__construct($pageCall, $id);
$this->typeId = intVal($id);
$this->subject = new ItemsetList(array(['id', $this->typeId]));
if ($this->subject->error) {
$this->notFound(Lang::game('itemset'), Lang::itemset('notFound'));
}
$this->name = $this->subject->getField('name', true);
$this->extendGlobalData($this->subject->getJSGlobals());
}
示例14: __construct
public function __construct($pageCall, $id)
{
parent::__construct($pageCall, $id);
$this->typeId = intVal($id);
$this->subject = new TitleList(array(['id', $this->typeId]));
if ($this->subject->error) {
$this->notFound(Lang::game('title'), Lang::title('notFound'));
}
$this->name = $this->subject->getHtmlizedName();
$this->nameFixed = Util::ucFirst(trim(strtr($this->subject->getField('male', true), ['%s' => '', ',' => ''])));
}
示例15: __construct
public function __construct($pageCall, $__)
{
parent::__construct($pageCall, $__);
// prefer $_GET over $_COOKIE
if (!empty($_GET['compare'])) {
$this->compareString = $_GET['compare'];
} else {
if (!empty($_COOKIE['compare_groups'])) {
$this->compareString = urldecode($_COOKIE['compare_groups']);
}
}
$this->name = Lang::main('compareTool');
}