Welcome Guest, Not a member yet? Register   Sign In
CI plugin for eclipse
#28

[eluser]Shiro[/eluser]
[quote author="gvdvenis" date="1218863568"]In my case the code completion mainly works, but i suspect that the lack of useful completion hints is due to the architecture of the loading mechanism CI uses. for example:

Code:
class Album extends Controller {
    function Album()
    {
        parent::Controller();
        $this->load->model('album_model', 'AlbumModel', TRUE);
        $this->AlbumModel->GetSomeRecords(); //<- this doesn't autocomplete and AFAIK there is no IDE that handles this situation.
    }

Please correct me if I'm wrong! When using this load mechanism there is no way of getting the code completion to work.

Just to be curious: Why was this approach taken instead of for example this "more common way" of doing things:

Code:
class Album extends Controller {
    
    protected $AlbumModel;

    function Album()
    {
        parent::Controller();
        $this->AlbumModel = new model('album_model', TRUE);
        $this->AlbumModel->GetSomeRecords(); //<- doing things this way will trigger codecompletion...
    }

Anyone any ideas/comments?[/quote]

hey guys, today I try to do autocomplete in eclipse 3.5 to load the function from a model, it works for me

in the controller file I added this:
Code:
class Companies extends Controller {
            
    
    function __construct()
    {
        parent::Controller();
        session_start();
        $this->output->enable_profiler(FALSE);
        $this->MCompanies = new MCompanies;   //MCompanies is a model            
    }
    
    function index()
    {
        $this->MCompanies-> //ctrl+space list out all the function in the model
    }

I not sure got what disadvantage, feel free to discuss


Messages In This Thread
CI plugin for eclipse - by El Forum - 01-17-2008, 12:04 AM
CI plugin for eclipse - by El Forum - 01-17-2008, 12:19 AM
CI plugin for eclipse - by El Forum - 02-22-2008, 07:16 AM
CI plugin for eclipse - by El Forum - 03-09-2008, 05:18 AM
CI plugin for eclipse - by El Forum - 03-09-2008, 05:19 AM
CI plugin for eclipse - by El Forum - 07-18-2008, 11:14 AM
CI plugin for eclipse - by El Forum - 07-18-2008, 11:48 AM
CI plugin for eclipse - by El Forum - 07-18-2008, 12:43 PM
CI plugin for eclipse - by El Forum - 07-19-2008, 04:22 PM
CI plugin for eclipse - by El Forum - 07-28-2008, 07:24 AM
CI plugin for eclipse - by El Forum - 08-05-2008, 08:03 AM
CI plugin for eclipse - by El Forum - 08-05-2008, 11:44 AM
CI plugin for eclipse - by El Forum - 08-15-2008, 06:12 PM
CI plugin for eclipse - by El Forum - 08-15-2008, 07:18 PM
CI plugin for eclipse - by El Forum - 08-16-2008, 03:50 AM
CI plugin for eclipse - by El Forum - 08-16-2008, 06:27 AM
CI plugin for eclipse - by El Forum - 08-17-2008, 05:22 PM
CI plugin for eclipse - by El Forum - 02-04-2009, 10:47 AM
CI plugin for eclipse - by El Forum - 02-04-2009, 12:19 PM
CI plugin for eclipse - by El Forum - 07-31-2009, 02:18 AM
CI plugin for eclipse - by El Forum - 07-31-2009, 05:39 AM
CI plugin for eclipse - by El Forum - 07-31-2009, 09:52 PM
CI plugin for eclipse - by El Forum - 09-11-2009, 04:16 PM
CI plugin for eclipse - by El Forum - 09-17-2009, 05:39 PM
CI plugin for eclipse - by El Forum - 09-18-2009, 06:38 AM
CI plugin for eclipse - by El Forum - 09-18-2009, 02:08 PM
CI plugin for eclipse - by El Forum - 09-19-2009, 04:40 PM
CI plugin for eclipse - by El Forum - 10-01-2009, 02:43 AM
CI plugin for eclipse - by El Forum - 01-03-2010, 06:24 PM
CI plugin for eclipse - by El Forum - 01-03-2010, 07:30 PM
CI plugin for eclipse - by El Forum - 01-26-2010, 11:41 AM
CI plugin for eclipse - by El Forum - 02-06-2010, 09:03 AM
CI plugin for eclipse - by El Forum - 03-01-2010, 08:50 PM
CI plugin for eclipse - by El Forum - 03-21-2010, 09:48 AM
CI plugin for eclipse - by El Forum - 03-21-2010, 07:48 PM
CI plugin for eclipse - by El Forum - 03-22-2010, 02:51 PM
CI plugin for eclipse - by El Forum - 05-25-2010, 08:21 AM
CI plugin for eclipse - by El Forum - 06-16-2010, 10:30 AM
CI plugin for eclipse - by El Forum - 07-23-2010, 05:14 PM
CI plugin for eclipse - by El Forum - 07-23-2010, 05:40 PM
CI plugin for eclipse - by El Forum - 09-17-2010, 02:55 AM
CI plugin for eclipse - by El Forum - 10-04-2010, 06:34 PM
CI plugin for eclipse - by El Forum - 11-08-2010, 09:26 PM
CI plugin for eclipse - by El Forum - 11-22-2010, 11:29 PM



Theme © iAndrew 2016 - Forum software by © MyBB