コード例 #1
0
ファイル: ForgotPassword.php プロジェクト: Rademade/MedOptima
 public function __construct(Application_Model_User_Profile $restaurant)
 {
     $this->_user = $restaurant;
     $this->_code = RM_User_Code_PasswordForgot::create($restaurant);
     $this->_code->save();
     parent::__construct();
 }
コード例 #2
0
ファイル: EmailConfirm.php プロジェクト: Rademade/MedOptima
 public function __construct(Application_Model_User_Profile $profile)
 {
     $this->_profile = $profile;
     $this->_code = RM_User_Code_EmailConfirm::create($profile);
     $this->_code->save();
     parent::__construct();
 }