Guest User

Untitled

a guest
May 22nd, 2018
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. public function indexAction()
  2. {
  3.     // action body
  4.     $this->view->current_date_and_time = date('M d, Y - H:i:s');
  5.  
  6.     $user = Doctrine_Core::getTable('Model_User')->findOneByEmailAndPassword('new_user_2@test.local', 'test');
  7.     $user->password = 'new_password';
  8.     $user->save();
  9. }
Add Comment
Please, Sign In to add comment