示例#1
0
文件: Account.php 项目: krisrita/udo
 function alterAccountAction()
 {
     $userId = $this->get('userId');
     $schoolId = $this->get('schoolId');
     $accountModel = new AccountModel();
     $result = $accountModel->alterAccount($userId, $schoolId);
     $this->redirect('manageAccount');
 }