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