Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is best IDE for autocomplete helper in cake framework [closed]

what is best IDE for auto-complete helper . because i can not remember all method or property of html helper or another for example :

$this->Html->tableHeaders(array('Date','Title','Active'));

but i should write tableHeaders and IDE not recognize Html's property and methods.

thanks.

like image 876
aya Avatar asked Oct 09 '22 17:10

aya


2 Answers

I've always been a fan of using Eclipse+PDT with Cake, as it supports completion quite well.

See: Code Completion for CakePHP in Eclipse

It's also worth noting that at least one of the main developers of CakePHP uses Eclipse (I know this because he wrote the above-linked article).

like image 178
Justin ᚅᚔᚈᚄᚒᚔ Avatar answered Oct 19 '22 08:10

Justin ᚅᚔᚈᚄᚒᚔ


you should not only select IDEs because of their autocomplete functionality.

I only know PHPDesigner which handles it pretty well. All IDEs need a file where the specific rules for the framework can be found, though. Otherwise they would not know how to autocomplete some classes.

like image 41
mark Avatar answered Oct 19 '22 08:10

mark