I have followed some guides on how to enable code assist to work with models being accessed from controllers. The solution involves adding the following code to your app_controller for every model/component on which you want code completion.
/**
* Post Model
*
* @var Post
*/
var $Post;
I have hundreds of models and no desire to create or maintain such a list. Is there no easier/dynamic way of doing this?
I tried added my "Models" folder to the included PHP Libraries Aptana is using, which means code complete works when I manually new a model, but models created CakePHP style do not function as desired, most likely because the IDE doesn't recognize them as classes.