Welcome Guest, Not a member yet? Register   Sign In
Matchbox RC2

[eluser]wiredesignz[/eluser]
You may find some differences. Wink

[eluser]philpalmieri[/eluser]
@johan Andre
http://ellislab.com/forums/viewthread/95755/

[eluser]zdknudsen[/eluser]
Hi guys, I am going to upgrade Matchbox for CI 1.7, but it won't be right away, seeing as I am rather busy these days. Smile

Best regards.

[eluser]philpalmieri[/eluser]
No worries man, we appreciate your hard work on it. If you need any help and want to delegate some stuff out just ask.

Phil

[eluser]Edmundas KondraĊĦovas[/eluser]
[quote author="Zacharias Knudsen" date="1226289470"]Hi guys, I am going to upgrade Matchbox for CI 1.7, but it won't be right away, seeing as I am rather busy these days. Smile

Best regards.[/quote]
I am currently developing a CMS based on CodeIgniter and modular separation is a convenient way to extend it. So I'm hoping you'll update Matchbox soon.

I appreciate your work . Good luck! Wink

[eluser]BorisK[/eluser]
I was trying to preload a helper in one of my modules when I discovered that an autoload.php config file created in the module directory (eg. /modules/modulename/config/autoload.php) is not being read.

Here's a fix for Matchbox v 0.9.4 tested on CI 1.6.3.

At line number 1080, you'll find this code:

Code:
function _ci_autoloader()
    {
        // {{{ Matchbox

        $ci = & get_instance();
        $ci->matchbox = & load_class('Matchbox');

        //}}}

        include(APPPATH.'config/autoload'.EXT);

Change it to:

Code:
function _ci_autoloader()
    {
        // {{{ Matchbox
        $ci = & get_instance();
        $ci->matchbox = & load_class('Matchbox');

        if ($filepath = $this->_matchbox->find('config/autoload' . EXT, $this->_matchbox->_module)) {
            include($filepath);        
        } else {
            include(APPPATH.'config/autoload'.EXT);
        }
        //}}}

Now you can have different preload files. E.g.
/modules/forum/config/preload.php
/modules/blog/config/preload.php

If you don't specify a module specific preload file, it will still use a global one:
/config/preload.php

UPDATE: I just read all of the previous 37 pages and found this link #241 where this was requested as a feature.

[eluser]OliverHR[/eluser]
deadlink in your wiki for Matchbox-0.9.3-Beta-r192.zip

Please update.

[eluser]zdknudsen[/eluser]
Where is that link, again? Smile

[eluser]OliverHR[/eluser]
I see you update Matchbox's wiki download section, thank you very much.

Dead link is in :

http://code.google.com/p/matchbox/wiki/Installation

CodeIgniter 1.6

* Matchbox 0.9.3 (beta) <<----- this x-\ link

[eluser]Unknown[/eluser]
Can someone please tell me how can i change my views folder name from views to templates and keep the same functionality ?
Untill i used matchbox i had an library that extended the Loader of CI called MY_Loader and redefined there the path to the views folder, but when i try doing the same in matchbox i just get an error , is there an easier way to do this , i also updated the callers array so it would make the call to the resource from MY_Loader and not the CI_Loader.




Theme © iAndrew 2016 - Forum software by © MyBB