Skip to content

Instantly share code, notes, and snippets.

@robzienert
Created December 23, 2009 16:19
Show Gist options
  • Save robzienert/262615 to your computer and use it in GitHub Desktop.
Save robzienert/262615 to your computer and use it in GitHub Desktop.
class Prpl_Controller_Action_Helper_Url extends Zend_Controller_Action_Helper_Url
{
public function url($urlOptions = array(), $name = null, $reset = false, $encode = true)
{
if (!isset($urlOptions['locale'])) {
$urlOptions['locale'] = Zend_Registry::get('Zend_Translate')->getLocale();
}
return parent::url($urlOptions, $name, $reset, $encode);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment