Re: [fw-general] Zend_Form_Element::getAttribs() not working?

2008-01-30 Thread kcrane377
Mark Maynereid wrote: On Wednesday 30 January 2008 14:06, Matthew Weier O'Phinney wrote: -- Mark Maynereid [EMAIL PROTECTED] wrote (on Wednesday, 30 January 2008, 01:22 PM +): I can't seem to make title attributes render. I think it might be a bug in PHP's Reflection class so

Re: [fw-general] Zend_Form bug: getAttribs() doesn't return set attributes

2008-01-29 Thread kcrane377
Simon Mundy wrote: Hi Matthew - I have added an element to a form using the 'factory' method and set the 'class' attribute by passing options to the method. If I inspect the object with var_dump I can see a public property of 'class'. But if I try $element-getAttribs() I get an

Re: [fw-general] noRouteAction() alternative subdirs

2006-12-24 Thread kcrane377
This is what i came up with the other day... I have only briefly tested it but seems to be working... The idea behind it is to consider every request a not found controller or action, unless specified the the router routes. $router = new Zend_Controller_RewriteRouter();

Re: [fw-general] Two Problems after upgrading to 0.6.0

2006-12-22 Thread kcrane377
I had the same issue with the request object not being passed to the action on first migration. Changing the constructor to init() fixed the issue. class IndexController extends Zend_Controller_Action { public function __construct() {...} public function viewAction()