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


PHP EmailField::name方法代碼示例

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


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

示例1: _createForgotPassForm

 public function _createForgotPassForm()
 {
     $form = new Form();
     $form->action = "/forgotpass";
     $form->add(EmailField::name('email')->label('Email')->help('What is your email address?')->required(true));
     return $form;
 }
開發者ID:JoonasMelin,項目名稱:BotQueue,代碼行數:7,代碼來源:auth.php

示例2: _createProfileEditForm

 /**
  * @param User $user
  * @return Form
  */
 private function _createProfileEditForm($user)
 {
     $form = new Form();
     $form->add(DisplayField::name('username')->label("Username")->value($user->get('username')));
     $form->add(EmailField::name('email')->label("Email")->value($user->get('email'))->required(true));
     if (User::$me->isAdmin()) {
         $form->add(CheckboxField::name('admin')->label("Is admin?")->help("Is this user an admin?")->checked($user->isAdmin()));
     }
     // todo add DateField
     /**
     $form->add(
     	DateField::name('birthday')
     		->label("Birthday")
     		->value($user->get('birthday'))
     );
     */
     $password_page = $user->getUrl() . "/changepass";
     $form->add(DisplayField::name('changepass')->label("Change Password")->value("Please visit the <a href=\"{$password_page}\">change password</a> page."));
     return $form;
 }
開發者ID:eric116,項目名稱:BotQueue,代碼行數:24,代碼來源:user.php

示例3: _createRegisterForm

 public function _createRegisterForm()
 {
     $form = new Form('register');
     if (!$this->args('username')) {
         $username = '';
     } else {
         $username = $this->args('username');
     }
     if (!$this->args('email')) {
         $email = '';
     } else {
         $email = $this->args('email');
     }
     $form->add(TextField::name('username')->label("Username")->value($username)->required(true));
     $form->add(EmailField::name('email')->label("Email address")->value($email)->required(true));
     $form->add(PasswordField::name('pass1')->label("Password")->required(true));
     $form->add(PasswordField::name('pass2')->label("Password Confirmation")->required(true));
     $tos = "By clicking on the \"Create your account\" button below, you certify that you have read and agree to our ";
     $tos .= "<a href=\"/tos\">Terms of use</a>";
     $tos .= " and ";
     $tos .= "<a href=\"/privacy\">Privacy Policy</a>.";
     $form->add(DisplayField::name('tos')->value($tos));
     $form->setSubmitText("Create your account");
     $form->setSubmitClass("btn btn-success btn-large");
     return $form;
 }
開發者ID:JoonasMelin,項目名稱:BotQueue,代碼行數:26,代碼來源:user.php


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