X-Git-Url: https://dev.renevier.net/?a=blobdiff_plain;f=application%2Fcontrollers%2FAccountController.php;h=9db12047c197b87330754f9013ad04e269a7ec3c;hb=7ab93faefae14af39fc5449a2c3311dd68d2c0f9;hp=f1d977facaf70ec4818cc3ba20b026c57b8326c9;hpb=ec061a75fe57a25eb7ef0894f5e723397ba35472;p=syj.git diff --git a/application/controllers/AccountController.php b/application/controllers/AccountController.php index f1d977f..9db1204 100644 --- a/application/controllers/AccountController.php +++ b/application/controllers/AccountController.php @@ -1,23 +1,20 @@ _helper->SyjSession->needsLogin(); + $this->_helper->SyjUserManager->needsLogin(); + $this->_helper->SyjMedias->addScripts('account'); + $this->_helper->SyjMedias->addStyleSheets('account'); - $this->view->headScript()->appendFile('js/prototype.js'); - $this->view->headScript()->appendFile('js/utils.js'); - $this->view->headScript()->appendFile('js/account.js'); - $this->view->headLink()->appendStylesheet('css/generic.css'); - $this->view->headLink()->appendStylesheet('css/account.css'); $this->view->headTitle($this->view->translate("my account")); } public function indexAction() { - $user = $this->_helper->SyjSession->user(); + $user = $this->_helper->SyjUserManager->current(); $request = $this->getRequest(); $form = new Syj_Form_Account(array('name' => 'accountform')); @@ -68,7 +65,7 @@ class AccountController extends Zend_Controller_Action protected function _jsLocaleStrings() { $this->view->jslocales = array( - 'notEmptyField' => __("Value is required and can't be empty"), + 'notEmptyField' => __("Value is required"), 'passwordNoMatchWarn' => __("Password do not match"), 'passwordLenghtWarn' => array(__("At least %d characters"), 6), 'nochangeWarn' => __("You have made no change"),