2

我在 CodeIgniter HMVC 中设置了两个模块。一个是模板,另一个是测试。

这是文件夹结构..

  1. 模板
    • 控制器
      • 主页.php
    • -----
      • ----.php
    • 意见
      • 布局
        • 管理员.php
        • 主文件
        • 用户.php
    • 主页.php
  2. 测试
    • 控制器
      • 测试.php

我在 routes.php 中添加了一个路由变量,它路由 home.php 作为模板的默认控制器。和自动加载的模板库。

现在,当我访问http://mysite.com/templates/home/indexhttp://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 */
4

1 回答 1

4

似乎只有当控制器名称与模块名称匹配时,才可以在不指定控制器名称的情况下加载模块:

可以使用 $this->load->module('module/controller'); 将控制器加载为其他控制器的类变量;或者只是 $this->load->module('module'); 如果控制器名称与模块名称匹配

https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/overview

尝试像这样加载模块:

$this->load->module('templates/home');
于 2013-07-04T12:45:13.080 回答