I downloaded Netbeans and CodeIgniter, and I downloaded 2 plugins for Netbeans. On of them is called “PHP CI Framework” and I can’t install it.
When I try to install it I get this message:
The plugin php apis is requested in implementation version 201107282000.
The following plugin is effected:
PHP CI Framework
What other plugin do I need to install for CI to be fully integrated so that I will have full Intellisense and documentation support in Netbeans?
If you just want auto-complete of functions then this will do it for you.
1) Create a folder in Netbeans called ‘autocomplete‘ in ‘Source Files‘
2) Create two files in here called something like ci_code_completion_controllers.php and ci_code_completion_models.php
Add this into each file;
Note: populate the Models section with your own.
3) Goto to the properties of your project in Netbeans and goto the ‘PHP Include Path‘ setting.
Add the autocomplete folder to the path.
4) So now in your controllers/model try typing
$this->load->and hit Ctrl+spacebar, you should see a list of avaiable functions.