我在 CodeIgniter HMVC 中设置了两个模块。一个是模板,另一个是测试。
这是文件夹结构..
- 模板
- 控制器
- 主页.php
- -----
- ----.php
- 意见
- 布局
- 管理员.php
- 主文件
- 用户.php
- 布局
- 主页.php
- 控制器
- 测试
- 控制器
- 测试.php
- 控制器
我在 routes.php 中添加了一个路由变量,它路由 home.php 作为模板的默认控制器。和自动加载的模板库。
现在,当我访问http://mysite.com/templates/home/index或http://mysite.com/templates/时,它工作正常,但是当我运行另一个模块(测试)时,它显示错误。我也试过echo Modules::run('templates/home/index');
但同样的问题。我在 test.php 中有流动的代码
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Test extends MX_Controller {
public function index()
{
$this->load->module('templates');
$this->templates->index();
}
}
它说Unable to load the requested file: home.php
这是我的模板库
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Template {
private $template_data = array();
private $headers = array();
private $CI;
public function __construct() {
$this->CI =& get_instance();
$this->CI->config->load('template');
}
function set($name, $value) {
$this->template_data[$name] = $value;
}
function add_header($header) {
array_push($this->headers, $header);
}
function load($template = '', $view = '', $view_data = array(), $return = FALSE) {
$this->CI = & get_instance();
$this->set('contents', $this->CI->load->view($view, $view_data, TRUE));
$this->set('headers', implode('', $this->headers));
return $this->CI->load->view($template, $this->template_data, $return);
}
}
/* End of file Template.php */
/* Location: ./system/application/libraries/Template.php */