當前位置: 首頁>>代碼示例>>PHP>>正文


PHP sfGuardUserPeer::retrieveByUsernameOrEmail方法代碼示例

本文整理匯總了PHP中sfGuardUserPeer::retrieveByUsernameOrEmail方法的典型用法代碼示例。如果您正苦於以下問題:PHP sfGuardUserPeer::retrieveByUsernameOrEmail方法的具體用法?PHP sfGuardUserPeer::retrieveByUsernameOrEmail怎麽用?PHP sfGuardUserPeer::retrieveByUsernameOrEmail使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在sfGuardUserPeer的用法示例。


在下文中一共展示了sfGuardUserPeer::retrieveByUsernameOrEmail方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: doClean

 protected function doClean($value)
 {
     $clean = (string) $value;
     // user exists?
     if (!is_null(sfGuardUserPeer::retrieveByUsernameOrEmail($clean))) {
         return $value;
     }
     throw new sfValidatorError($this, 'invalid', array('value' => $value));
 }
開發者ID:lendji4000,項目名稱:compose,代碼行數:9,代碼來源:sfGuardValidatorUsernameOrEmail.class.php

示例2: executePassword

 /**
  * executePassword
  *
  * Form for requesting instructions on how to reset your password
  *
  * @param  sfRequest $request
  * @return void
  * @author Jonathan H. Wage
  */
 public function executePassword(sfWebRequest $request)
 {
     $this->form = new sfGuardFormForgotPassword();
     if ($request->isMethod(sfRequest::POST)) {
         $this->form->bind($request->getParameter($this->form->getName()));
         if ($this->form->isValid()) {
             $values = $this->form->getValues();
             $sfGuardUser = sfGuardUserPeer::retrieveByUsernameOrEmail($values['username_or_email'], true);
             $this->forward404Unless($sfGuardUser, 'user not found');
             $messageParams = array('sfGuardUser' => $sfGuardUser);
             $body = $this->getComponent($this->getModuleName(), 'send_request_reset_password', $messageParams);
             $from = sfConfig::get('app_sf_guard_extra_plugin_mail_from', 'noreply@example.org');
             $fromName = sfConfig::get('app_sf_guard_extra_plugin_name_from', 'noreply');
             $to = $sfGuardUser->getEmail();
             $toName = $sfGuardUser->getUsername();
             $subject = sfConfig::get('app_sf_guard_extra_plugin_subject_request', 'Request to reset password');
             $mailer = $this->getMailer();
             $message = $mailer->compose(array($from => $fromName), array($to => $toName), $subject, $body);
             $mailer->send($message);
             return $this->redirect('@sf_guard_do_password?' . http_build_query($values));
         }
     }
 }
開發者ID:lendji4000,項目名稱:compose,代碼行數:32,代碼來源:BasesfGuardForgotPasswordActions.class.php


注:本文中的sfGuardUserPeer::retrieveByUsernameOrEmail方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。