我一直在使用带有 hmvc 模式的 codeigniter。我的文件夹结构如下所示
现在的问题是如何adminw
在常见的 codeigniter 模型中使用模型?
我有一个通用控制器,如下所示
<?php
class MY_Controller extends CI_Controller {
public function __construct(){
parent::__construct();
//here i am checking url if adminw than load model inside adminw folder
$path = $this->uri->segment(1);
if($path != ADMIN_FOLDER){
$this->load->model('modules/SettingModel');<-- BUT THIS IS NOT WORKING
}else{
$this->load->model('SettingModel');
}
简而言之,我如何加载存储在 hmvc 文件夹中的模型