本文整理匯總了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();
}
}
}
示例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();
}
}
}