当前位置: 首页>>代码示例>>PHP>>正文


PHP GenericPage类代码示例

本文整理汇总了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'));
 }
开发者ID:saqar,项目名称:aowow,代码行数:7,代码来源:itemsets.php

示例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);
 }
开发者ID:Carbenium,项目名称:aowow,代码行数:29,代码来源:admin.php

示例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 : '';
 }
开发者ID:TrinityCore,项目名称:aowow,代码行数:8,代码来源:enchantments.php

示例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 : '';
 }
开发者ID:TrinityCore,项目名称:aowow,代码行数:8,代码来源:npcs.php

示例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];
 }
开发者ID:TrinityCore,项目名称:aowow,代码行数:9,代码来源:spells.php

示例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);
 }
开发者ID:saqar,项目名称:aowow,代码行数:9,代码来源:profiles.php

示例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);
     }
 }
开发者ID:TrinityCore,项目名称:aowow,代码行数:9,代码来源:utility.php

示例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);
 }
开发者ID:Carbenium,项目名称:aowow,代码行数:10,代码来源:currency.php

示例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'));
 }
开发者ID:TrinityCore,项目名称:aowow,代码行数:10,代码来源:emote.php

示例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 : '';
 }
开发者ID:Carbenium,项目名称:aowow,代码行数:10,代码来源:quests.php

示例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));
 }
开发者ID:TrinityCore,项目名称:aowow,代码行数:11,代码来源:enchantment.php

示例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');
 }
开发者ID:Carbenium,项目名称:aowow,代码行数:11,代码来源:skill.php

示例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());
 }
开发者ID:Carbenium,项目名称:aowow,代码行数:11,代码来源:itemset.php

示例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' => '', ',' => ''])));
 }
开发者ID:TrinityCore,项目名称:aowow,代码行数:11,代码来源:title.php

示例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');
 }
开发者ID:saqar,项目名称:aowow,代码行数:13,代码来源:compare.php


注:本文中的GenericPage类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。