Welcome Guest, Not a member yet? Register   Sign In
Modular HMVC - Libraries on Steroids [Updated x3]
#11

[eluser]wiredesignz[/eluser]
This is an example of a base controller using the _remap() method to load modules HMVC style.

Code:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

class Base extends Controller
{
    function Base()
    {
        parent::Controller();
        $this->load->library('modules');
    }
    
    function _remap()
    {
        $path   = $this->uri->segment(2).'/';
        $module = $path.$this->uri->segment(3);
        $action = $this->uri->segment(4);

        $this->modules->load($module, $action);
    }
}

Code:
http://127.0.0.1/base/admin/products/edit

The admin/products module:
Code:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

class Products extends Modules
{
    function Products($action = NULL)
    {
        parent::Modules();
        $this->load->model('products_model', 'products');
        
        if ($action) $this->$action();
    }
    
    function add()
    {
        echo 'admin/products/add';
    }
    
    function edit()
    {
        echo 'admin/products/edit';
    }
}


Messages In This Thread
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-18-2008, 03:03 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-18-2008, 03:06 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-18-2008, 03:11 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-18-2008, 04:37 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-18-2008, 03:28 PM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-18-2008, 03:33 PM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-18-2008, 04:11 PM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-18-2008, 04:22 PM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-18-2008, 06:02 PM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-18-2008, 08:29 PM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-18-2008, 09:51 PM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 07:15 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 07:21 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 07:41 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 07:43 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 07:51 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 08:42 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 08:50 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 08:57 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 09:06 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 11:03 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 11:27 AM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 03:38 PM
Modular HMVC - Libraries on Steroids [Updated x3] - by El Forum - 02-19-2008, 10:17 PM



Theme © iAndrew 2016 - Forum software by © MyBB