You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refer to each built-in view script to see how the form is configured and rendered.
NOTE: Your module must be loaded after ZfcUser or the overriding will not work. To do this, place your module after ZfcUser in the modules key of your application configuration (config/application.config.php), or do the following:
<?phpnamespaceFoo;
class Module
{
publicfunctioninit($moduleManager)
{
$moduleManager->loadModule('ZfcUser');
}
}
NOTE: As of Zend Framework RC1 it is no longer needed to clone the ModuleEvent in the init() method.