Hello i have some problem, i use Codeigniter Modular Extensions - HMVC.
Problem is when i try to show my module.
An Error Was Encountered
Unable to load the requested file: quicklinks_show.php
I have two modules
1.Dashboard 2.Quicklinks
The problem arises when I try to call and show another module in dashboard module. I put this code in Dashboard/view/dashboard_view.php module
<div id="modules">
<?php modules::run('quicklinks/show');?>
</div>
In my Quicklinks modules i have simple Show() function
public function show(){
$this->load->view('quicklinks_show');
}