[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.tools.pdt] Code completion...
|
- From: eugenistoc@xxxxxxxxx (Eugen )
- Date: Sat, 27 Sep 2008 03:44:43 +0000 (UTC)
- Newsgroups: eclipse.tools.pdt
- Organization: Eclipse
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
I don't know if this was brought up before, or what its referred to, but I
work with cakePHP a lot, and I run into a problem that I don't get code
completion on custom Models when I reference them from the controller.
For example I will have my userModel.php
class MyModel extends AppModel {
var $name;
}
and in my userController.php I will have
class UserController extends AppController {
echo $this->MyModel->save($this->form(data);
}
$this->MyModel->[code completion jumps in]
does anyone have a glue how to make this work?