diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-08-22 18:08:48 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-08-22 18:15:50 +0200 |
commit | d87e4e2881d4cfa17dfd0445fae1fa881d5707c0 (patch) | |
tree | 55a93216930b43242fc5b513fc12e45c8bb580e8 /application/controllers/user.php | |
parent | 203f824ae5a9ec4a979542f4eb9e09fcb07cb36c (diff) |
Deduplicate initialisation code in controllers
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/controllers/user.php')
-rw-r--r-- | application/controllers/user.php | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/application/controllers/user.php b/application/controllers/user.php index 27e027ac7..37c84b1ed 100644 --- a/application/controllers/user.php +++ b/application/controllers/user.php @@ -7,29 +7,15 @@ * */ -class User extends CI_Controller { - - public $data = array(); - public $var; +class User extends MY_Controller { function __construct() { parent::__construct(); - $this->var = new StdClass(); - - $this->load->library('migration'); - if ( ! $this->migration->current()) { - show_error($this->migration->error_string()); - } - $this->load->model("muser"); - $this->data["title"] = "FileBin"; - - $this->load->helper(array('form', 'filebin')); $this->var->view_dir = "user/"; - $this->data['username'] = $this->muser->get_username(); } function index() @@ -293,6 +279,8 @@ class User extends CI_Controller { // This simply queries the username function _reset_password_username_form() { + $this->data['username'] = $this->muser->get_username(); + $this->load->view('header', $this->data); $this->load->view($this->var->view_dir.'reset_password_username_form', $this->data); $this->load->view('footer', $this->data); |