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

[eluser]wiredesignz[/eluser]
Matchbox is a great tool, but I wanted modular HMVC without altering the CI core libraries. (CI_Loader)

The Modules loader mimics CI's own method of loading Controllers and Models, by assigning all loaded libraries into the module namespace. Any further loads by the module are intercepted and passed to $CI to process, then the object namespace for the module is updated again.

Using the modules is easy.
This module creates a products_list based on a value obtained from the View data:

In the View template I have:
Code:
<p>Products in this Category</p>
    <ul id="products-list">
        &lt;?php $this->product_list->render($catcode); ?&gt;
    </ul>

The admin/products_list module
Code:
class Product_list extends Modules //as a psuedo-controller
{
    function Product_list()
    {
        parent::Modules();
        $this->load->model('products_model', 'products');
    }
    
    function render($catcode = 0)
    {        
        $this->products->findAll("catcode = {$catcode}");
        
        $data = array(
            'resultset' => & $this->products->resultset,
        );

        $this->load->view('admin/products_list', $data);
    }
}

The View partial for the admin/products_list:
Code:
&lt;?php
    foreach($resultset as $product => $item)
    {
        echo '<li>', anchor("admin/products/edit/{$item->product_id}", "{$item->description}", 'title="'.$item->name.'"'), '</li>';
    }
?&gt;


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