Example #1
0
 /**
  * Set the used template.
  */
 public function __construct()
 {
     parent::__construct('blueprints');
 }
Example #2
0
 /**
  * Set the used template.
  */
 public function __construct()
 {
     parent::__construct('items');
 }
Example #3
0
 /**
  * Set the used template.
  */
 public function __construct()
 {
     parent::__construct('craftings');
 }
Example #4
0
 /**
  * Set the used template.
  */
 public function __construct()
 {
     parent::__construct('register');
 }
Example #5
0
 /**
  * Set the template.
  */
 public function __construct()
 {
     parent::__construct('admin');
 }
Example #6
0
 /**
  * Set the used template.
  */
 public function __construct()
 {
     parent::__construct('index');
 }
Example #7
0
 /**
  * Set the used template.
  */
 public function __construct()
 {
     parent::__construct('materials');
 }
Example #8
0
 /**
  * Set the used template.
  */
 function __construct()
 {
     parent::__construct('login');
 }
Example #9
0
 /**
  * Set the used template.
  */
 public function __construct()
 {
     parent::__construct('techniques');
 }
Example #10
0
 /**
  * Set the used template.
  */
 public function __construct()
 {
     parent::__construct('characters');
 }
Example #11
0
 /**
  * Set the used template.
  */
 function __construct()
 {
     parent::__construct('lostPassword');
 }
Example #12
0
 /**
  * Render and output the template
  *
  * @return void
  */
 public function render()
 {
     $this->template->assign('user', $this->user);
     parent::render();
 }