Re: [fw-general] Base Controller convenience methods

2009-02-24 Thread Jason Webster
Sent: 24 February 2009 16:23 To: O'BRIEN, Steven X Cc: Marko Korhonen; fw-general@lists.zend.com Subject: Re: [fw-general] Base Controller convenience methods Steven: To get code completion do something like: /** * @var MyCustomHelper */ protected $myCustomHelper; ... public function init

RE: [fw-general] Base Controller convenience methods

2009-02-24 Thread O'BRIEN, Steven X
ral@lists.zend.com Subject: Re: [fw-general] Base Controller convenience methods Steven: To get code completion do something like: /** * @var MyCustomHelper */ protected $myCustomHelper; ... public function init() { ... $this->myCustomHelper = $this->_helper->myCustomHelper; ... }

Re: [fw-general] Base Controller convenience methods

2009-02-24 Thread Jake McGraw
Steven: To get code completion do something like: /** * @var MyCustomHelper */ protected $myCustomHelper; ... public function init() { ... $this->myCustomHelper = $this->_helper->myCustomHelper; ... } using the @var notation will allow Eclipse to expand any reference. - jake On Tue, Feb

Re: [fw-general] Base Controller convenience methods

2009-02-24 Thread till
On Tue, Feb 24, 2009 at 4:48 PM, Matthew Weier O'Phinney wrote: > -- O'BRIEN, Steven X wrote > (on Tuesday, 24 February 2009, 02:23 PM -): >> This might sound trivial but an advantage of using base controllers is that >> you get code completion using eclipse or zend studio. >> >> Do you get

Re: [fw-general] Base Controller convenience methods

2009-02-24 Thread Matthew Weier O'Phinney
-- O'BRIEN, Steven X wrote (on Tuesday, 24 February 2009, 02:23 PM -): > This might sound trivial but an advantage of using base controllers is that > you get code completion using eclipse or zend studio. > > Do you get code completion when using action helpers? > > For example it would be

RE: [fw-general] Base Controller convenience methods

2009-02-24 Thread O'BRIEN, Steven X
This might sound trivial but an advantage of using base controllers is that you get code completion using eclipse or zend studio. Do you get code completion when using action helpers? For example it would be great if you could go $this->_helper->[List of all available helpers] -Original