Hybrid View
-
20 Sep 2010 5:31 PM #1
Another Codeigniter Direct implementation
Another Codeigniter Direct implementation
Hi folks, I saw the other thread for a direct codeigniter implementation but I think my approach is a bit different.
You can grab the code from http://github.com/ficeto/direct-igniter
The classes that Direct calls in my case are regular Controller classes, just like those that are in the application/controllers folder but the ones for Direct stay in applications/direct folder.
Going this way lets you use the same models libraries and syntax as in codeigniter.
I'm running this same code in an application that is build on direct and features all kinds of grids, trees, forms and such.
I have a basic test build in, so some of the files are purely for example.
The files that you need to worry are:
application/config/direct.php
application/controllers/direct.php <- you can change the index and deploy login checks if needed
application/libraries/Direct_api.php
application/libraries/Direct_cache_provider.php
and the application/direct folder for your controller classes
enjoy, I hope you like it.
NOTE: If you are using Codeigniter 2, you will need to change the model class in the example to extend CI_Model (don't forget to also reflect that in the constructor function)Last edited by ficeto; 5 Oct 2010 at 9:53 AM. Reason: added note about CI2
-
1 Oct 2010 2:02 AM #2
Hi,
i try this with codeigniter 2 but everytime i get follwing error:
Any idea?Code:{"type":"exception","tid":2,"message":"Call to undefined class: Direct_controller","where":"#0 D:\\PhpStorm-Projects\\iknow6\\application\\controllers\\direct.php(105): Direct->_rpc(Object(stdClass))\n#1 D:\\PhpStorm-Projects\\iknow6\\application\\controllers\\direct.php(68): Direct->_dispatch()\n#2 [internal function]: Direct->router()\n#3 D:\\PhpStorm-Projects\\iknow6\\system\\core\\CodeIgniter.php(311): call_user_func_array(Array, Array)\n#4 D:\\PhpStorm-Projects\\iknow6\\index.php(163): require_once('D:\\PhpStorm-Pro...')\n#5 {main}"}
-
1 Oct 2010 4:13 AM #3
it seems that on windows the following will not work. I don“t know why...
Code:$apiState = $this->session->userdata('ext-direct-state');
-
2 Oct 2010 1:23 AM #4
it uses codeigniter session to store the API state. Maybe nothing was saved there to begin with... can you check that please?
-
3 Oct 2010 9:10 PM #5
i debug this with firebug. Inside the api() function the session will be correct set, but is not available inside the router function.
Here runs windows with a local Apache Server . The same behaviour is inside the other codeigniter implementation from goachka. It seems that the router function can not access the original sessions-data an create a new one every direct call.
So, every call the api will be recreated :-(
Currently i have no idea why the sessions will be recreated...
-
4 Oct 2010 5:57 AM #6
can you otherwise confirm that your codeigniter sessions are working at all?
Similar Threads
-
Ext.Direct for CodeIgniter
By goachka in forum Ext.DirectReplies: 46Last Post: 9 Feb 2013, 5:03 PM -
Ext.Direct implementation gotchas
By meercat in forum Ext.DirectReplies: 0Last Post: 17 Sep 2010, 7:01 AM -
ext.direct and codeigniter
By Boon in forum Ext.DirectReplies: 3Last Post: 31 Aug 2009, 12:24 PM -
Alternative Ext Direct Java Implementation
By rastafarra in forum Ext.DirectReplies: 0Last Post: 8 Jun 2009, 12:06 AM


Reply With Quote