junichi11 / cakephp-netbeans

CakePHP support in NetBeans
http://cakephp.org
71 stars 18 forks source link

Add Code Completion for AppController fields #50

Closed junichi11 closed 11 years ago

junichi11 commented 11 years ago

Currently, Code Completion for helpers, components, e.t.c. fields is available only concrete controller. e.g. If we set helpers to AppController, code completion for helper is not available.

class AppController extends Controller {
    public $helpers = array('Foo', 'Bar'); // these helpers are not available in view
}
class PostsController extends Controller {
    public $helpers = array('MyHtml', 'MySession'); // these helpers are available in view
}