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


PHP BOL_UserService::getResetForm方法代碼示例

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


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

示例1: forgotPassword

 public function forgotPassword()
 {
     if (OW::getUser()->isAuthenticated()) {
         $this->redirect(OW_URL_HOME);
     }
     $this->setPageHeading(OW::getLanguage()->text('base', 'forgot_password_heading'));
     $language = OW::getLanguage();
     $form = $this->userService->getResetForm();
     $this->addForm($form);
     OW::getDocument()->getMasterPage()->setTemplate(OW::getThemeManager()->getMasterPageTemplate(OW_MasterPage::TEMPLATE_BLANK));
     if (OW::getRequest()->isPost()) {
         if ($form->isValid($_POST)) {
             $data = $form->getValues();
             try {
                 $this->userService->processResetForm($data);
             } catch (LogicException $e) {
                 OW::getFeedback()->error($e->getMessage());
                 $this->redirect();
             }
             OW::getFeedback()->info($language->text('base', 'forgot_password_success_message'));
             $this->redirect();
         } else {
             OW::getFeedback()->error($language->text('base', 'forgot_password_general_error_message'));
             $this->redirect();
         }
     }
 }
開發者ID:hardikamutech,項目名稱:loov,代碼行數:27,代碼來源:user.php

示例2: forgotPassword

 public function forgotPassword()
 {
     //mehul change
     // add main menu
     $mainMenu = new BASE_CMP_MainMenu();
     //$this->addMenu(BOL_NavigationService::MENU_TYPE_MAIN, $mainMenu);
     $this->addComponent('main_menu', $mainMenu);
     // add bottom menu
     $bottomMenu = new BASE_CMP_BottomMenu();
     //$this->addMenu(BOL_NavigationService::MENU_TYPE_BOTTOM, $bottomMenu);
     $this->addComponent('bottom_menu', $bottomMenu);
     $this->assign('site_url', OW_URL_HOME);
     $this->assign('theme_css_url', OW_URL_STATIC . "themes/morning/");
     //mehul change over
     if (OW::getUser()->isAuthenticated()) {
         $this->redirect(OW_URL_HOME);
     }
     $this->setPageHeading(OW::getLanguage()->text('base', 'forgot_password_heading'));
     $language = OW::getLanguage();
     $form = $this->userService->getResetForm();
     $this->addForm($form);
     OW::getDocument()->getMasterPage()->setTemplate(OW::getThemeManager()->getMasterPageTemplate(OW_MasterPage::TEMPLATE_BLANK));
     if (OW::getRequest()->isPost()) {
         if ($form->isValid($_POST)) {
             $data = $form->getValues();
             try {
                 $this->userService->processResetForm($data);
             } catch (LogicException $e) {
                 OW::getFeedback()->error($e->getMessage());
                 $this->redirect();
             }
             OW::getFeedback()->info($language->text('base', 'forgot_password_success_message'));
             $this->redirect();
         } else {
             OW::getFeedback()->error($language->text('base', 'forgot_password_general_error_message'));
             $this->redirect();
         }
     }
 }
開發者ID:hardikamutech,項目名稱:hammu,代碼行數:39,代碼來源:user_16_6_2015.php


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