02-21-2012, 07:36 PM
[eluser]Unknown[/eluser]
System
Codeigniter v2.1.0
Modular Extensions - HMVC version 5.2
Template Library
---
Modules:
welcome
Welcome Controller:
welcome_message.php:
if use $this->template->build() and not use modules::run() then not problem
but
view file in use modules::run('home') error message:
sorry my bad english
please help me!
thank you.
System
Codeigniter v2.1.0
Modular Extensions - HMVC version 5.2
Template Library
---
Modules:
welcome
Quote: controllershome
-welcome.php
views
-welcome_message.php
Quote: controllers
-home.php
views
-home_message.php
Welcome Controller:
Code:
<?php
function index()
{
//$this->load->view('welcome_message');
$this->template->build('welcome_message');
}
welcome_message.php:
Code:
<?php echo modules::run('home');?>
if use $this->template->build() and not use modules::run() then not problem
but
view file in use modules::run('home') error message:
Code:
Unable to load the requested file: home_message.php
sorry my bad english

please help me!
thank you.