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