Welcome Guest, Not a member yet? Register   Sign In
Using Zend Framework components in CI
#6

[eluser]Phil Sturgeon[/eluser]
I was looking into a way to make it use normal CI syntax, meaning the following would be possible:

Code:
$this->zend->load('flickr', array('API_KEY'));

But call_usr_func_array() just doesnt work with constructors :'(

Code:
// EPIC FAIL
class Test {
    
    function __construct() {
        echo "Params: ";
        print_r(func_get_args());
    }
    
}

call_user_func_array(array('Test', '__construct'), array('param1', 'param2'));

Anyone got a way round it? If we could get these classes called in the loader with all arguments passed as in my example we wouldn't need to call $flickr = new Zend_Service_Flickr($flickr_api_key); in our controllers.

Must admit I don't know much about Zend, but would learn a little more if it would get on better with my friend.


Messages In This Thread
Using Zend Framework components in CI - by El Forum - 12-12-2008, 04:01 AM
Using Zend Framework components in CI - by El Forum - 12-12-2008, 04:10 AM
Using Zend Framework components in CI - by El Forum - 12-12-2008, 06:28 AM
Using Zend Framework components in CI - by El Forum - 12-12-2008, 06:37 AM
Using Zend Framework components in CI - by El Forum - 12-12-2008, 06:46 AM
Using Zend Framework components in CI - by El Forum - 12-12-2008, 07:57 AM
Using Zend Framework components in CI - by El Forum - 12-12-2008, 08:14 AM
Using Zend Framework components in CI - by El Forum - 12-13-2008, 11:17 PM
Using Zend Framework components in CI - by El Forum - 12-14-2008, 04:10 PM
Using Zend Framework components in CI - by El Forum - 12-15-2008, 02:59 AM
Using Zend Framework components in CI - by El Forum - 12-15-2008, 02:59 AM
Using Zend Framework components in CI - by El Forum - 12-15-2008, 04:31 AM
Using Zend Framework components in CI - by El Forum - 12-15-2008, 06:28 AM
Using Zend Framework components in CI - by El Forum - 12-15-2008, 08:14 AM
Using Zend Framework components in CI - by El Forum - 12-15-2008, 09:27 AM



Theme © iAndrew 2016 - Forum software by © MyBB