Dashboard::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( )
    public function __construct()
    {
        parent::__construct();
        //  calls the constructor
        $this->load->model('Dashboard_model');
        $this->load->model('Locations_model');
        $this->load->model('Themes_model');
        $this->load->model('Updates_model');
        $this->load->library('currency');
        // load the currency library
        $this->lang->load('dashboard');
    }

Usage Example

예제 #1
0
 public function __construct()
 {
     parent::__construct();
     $this->dashboards = array();
 }
All Usage Examples Of Dashboard::__construct