示例#1
0
 /**
  * Construct the Alliance Details object.
  * Set up the basic variables of the class and add the functions to the
  *  build queue.
  */
 function __construct()
 {
     parent::__construct();
     $this->queue("start");
     //$this->queue("summaryTable");
     $this->queue("display");
 }
示例#2
0
 /**
  *  Reset the assembly object to prepare for creating the context.
  */
 function context()
 {
     parent::__construct();
     $this->queue("menuSetup");
     $this->queue("menu");
     $this->queue("topLists");
 }
示例#3
0
 /**
  * Construct the Alliance Details object.
  *
  *  Set up the basic variables of the class and add the functions to the
  *  build queue.
  */
 function __construct()
 {
     parent::__construct();
     $this->queue("start");
     $this->queue("newSearch");
     $this->queue("checkSearch");
 }
示例#4
0
 /**
  *  Reset the assembly object to prepare for creating the context.
  */
 function context()
 {
     parent::__construct();
     $this->queue("menuSetup");
     $this->queue("menu");
     $this->queue("points");
     $this->queue("map");
 }
示例#5
0
 function __construct()
 {
     parent::__construct();
     $this->queue("start");
     $this->queue("top");
     $this->queue("developers");
     $this->queue("stats");
     $this->queue("theme");
     $this->queue("mods");
     $this->queue("bottom");
 }
示例#6
0
 function __construct()
 {
     parent::__construct();
     $this->queue("start");
     $this->queue("details");
 }
 function context()
 {
     parent::__construct();
     $this->queue('menuSetup');
     $this->queue('menu');
     $this->queue('clock');
     $this->queue('topLists');
 }
示例#8
0
 function __construct()
 {
     parent::__construct();
     $this->queue("start");
     $this->queue("content");
 }
示例#9
0
文件: settings.php 项目: 6RUN0/inc_cc
 /**
  * Build context.
  *
  * @return none
  */
 function context()
 {
     parent::__construct();
     $this->queue('menu');
 }