ERP/application/core/MY_Loader.php
jerryhanjj ebc2d5a089 ERP
2017-04-01 14:14:10 +08:00

13 lines
311 B
PHP

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
class MY_Loader extends CI_Loader {
public function __construct(){
parent::__construct();
}
public function setpath(){
$path = str_replace("\\", "/", FCPATH);
$this->_ci_view_paths = array($path.'data/themes/' => TRUE);
}
}