本文整理汇总了PHP中Phalcon\Forms\Element\Text::setLabel方法的典型用法代码示例。如果您正苦于以下问题:PHP Text::setLabel方法的具体用法?PHP Text::setLabel怎么用?PHP Text::setLabel使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Phalcon\Forms\Element\Text
的用法示例。
在下文中一共展示了Text::setLabel方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: initialize
function initialize($entity = null, $options = null)
{
$date = new Date('date');
$date->setLabel('Input Date');
$date->setFilters(array('striptags', 'string'));
$date->setDefault(date('Y-m-d'));
$date->addValidators(array(new PresenceOf(array('message' => 'Date is required'))));
$this->add($date);
$start_time = new Text('start_hour');
$start_time->setLabel('Input Start Hour');
$start_time->setFilters(array('striptags', 'string'));
$start_time->addValidators(array(new PresenceOf(array('message' => 'Start Time is required'))));
$this->add($start_time);
$finish_time = new Text('finish_hour');
$finish_time->setLabel('Input Finish Hour');
$finish_time->setFilters(array('striptags', 'string'));
$finish_time->addValidators(array(new PresenceOf(array('message' => 'Finish Time is required'))));
$this->add($finish_time);
$systemId = new Select('system_id', Systems::find(), array('using' => array('id', 'name'), 'useEmpty' => true));
$systemId->setLabel('Select System');
$systemId->addValidators(array(new PresenceOf(array('message' => 'System is required'))));
if ($entity) {
$systemId->setDefault(array($entity->system_id));
}
$this->add($systemId);
$description = new TextArea('description');
$description->setLabel('Input Description');
$description->addValidators(array(new PresenceOf(array('message' => 'Description is required'))));
$this->add($description);
$hidden = new Hidden('id');
if ($entity) {
$hidden->setDefault(array($entity->id));
}
$this->add($hidden);
}
示例2: initialize
public function initialize()
{
$email = new Text('email');
$email->setLabel('Email');
$email->addValidators([new PresenceOf(['message' => 'The email is required', 'cancelOnFail' => true]), new Email(['message' => 'Must be a valid email'])]);
$this->add($email);
$firstName = new Text('first-name');
$firstName->setLabel('First Name');
$firstName->addValidators([new PresenceOf(['message' => 'The first name is required', 'cancelOnFail' => true]), new StringLength(['min' => 3, 'max' => 40, 'messageMinimum' => 'The first name is too short. Minimum 3 characters', 'messageMaximum' => 'The first name is too long. Maximum 40 characters'])]);
$this->add($firstName);
$lastName = new Text('last-name');
$lastName->setLabel('Last Name');
$lastName->addValidators([new PresenceOf(['message' => 'The last name is required', 'cancelOnFail' => true]), new StringLength(['min' => 3, 'max' => 40, 'messageMinimum' => 'The last name is too short. Minimum 3 characters', 'messageMaximum' => 'The last name is too long. Maximum 40 characters'])]);
$this->add($lastName);
$middleName = new Text('middle-name');
$middleName->setLabel('Middle Name');
$middleName->addValidators([new StringLength(['max' => 40, 'messageMaximum' => 'The middle name is too long. Maximum 40 characters'])]);
$this->add($middleName);
$password = new Password('password');
$password->setLabel('Password');
$password->addValidators([new PresenceOf(['message' => 'The password is required', 'cancelOnFail' => true]), new StringLength(array('min' => 8, 'messageMinimum' => 'Password is too short. Minimum 8 characters')), new Regex(['pattern' => '/^(?=.*[A-Z])(?=.*[0-9])(?=.*[a-z]).*$/', 'message' => 'The password is not strong enough. It must contain both upper, lowercase characters and at least one digit']), new Confirmation(array('message' => 'The password does not match it\'s confirmation', 'with' => 'password-confirm'))]);
$this->add($password);
$confirm = new Password('password-confirm');
$confirm->setLabel('Confirm password');
$confirm->addValidators([new PresenceOf(['message' => 'The password confirmation is required'])]);
$this->add($confirm);
$csrf = new Hidden('csrf');
$csrf->addValidator(new Identical(array('value' => $this->security->getSessionToken(), 'message' => 'CSRF validation failed')));
$this->add($csrf);
}
示例3: initialize
public function initialize($entity = null, $options = null)
{
$title = new Text('title');
$title->setLabel('Название');
$title->setFilters(array('striptags', 'string'));
$this->add($title);
}
示例4: initialize
public function initialize($entity = null, $options = null)
{
// Name
$name = new Text('name');
$name->setLabel('Ваше полное имя');
$name->setFilters(array('striptags', 'string'));
$name->addValidators(array(new PresenceOf(array('message' => 'Имя является обязательным параметром'))));
$this->add($name);
// Name
$name = new Text('nickname');
$name->setLabel('Никнейм в игре');
$name->setFilters(array('alpha'));
$name->addValidators(array(new PresenceOf(array('message' => 'Никнейм является обязательным параметром'))));
$this->add($name);
// Email
$email = new Text('email');
$email->setLabel('E-Mail');
$email->setFilters(['email']);
$email->addValidators(array(new PresenceOf(array('message' => 'E-mail является обязательным параметром')), new Email(array('message' => 'E-mail не верный'))));
$this->add($email);
// Password
$password = new Password('password');
$password->setLabel('Пароль');
$password->addValidators(array(new PresenceOf(array('message' => 'Пароль является обязательным параметром'))));
$this->add($password);
// Confirm Password
$repeatPassword = new Password('repeatPassword');
$repeatPassword->setLabel('Повторите пароль');
$repeatPassword->addValidators(array(new PresenceOf(array('message' => 'Пароль является обязательным параметром'))));
$this->add($repeatPassword);
}
示例5: initialize
/**
* Add all fields to the form and set form specific attributes.
*/
public function initialize()
{
$this->_action = 'general';
$title = new Text('title');
$title->setLabel('Title');
$title->setFilters(array('striptags', 'string'));
$title->setAttributes(array('class' => 'form-control'));
$title->setDefault($this->_config->application->title);
$title->addValidators(array(new PresenceOf(array())));
$cryptKey = new Text('cryptkey');
$cryptKey->setLabel('Cryptkey');
$cryptKey->setFilters(array('striptags', 'string'));
$cryptKey->setAttributes(array('class' => 'form-control'));
$cryptKey->setDefault($this->_config->application->phalconCryptKey);
$cryptKey->addValidators(array(new PresenceOf(array())));
$bgcolor = new Select('bgcolor', array('blackbg' => 'Black', 'whitebg' => 'White'), array('useEmpty' => false));
$bgcolor->setLabel('Background color');
$bgcolor->setDefault($this->_config->application->background);
$debug = new Check('debug');
$debug->setLabel('debug');
$debug->setAttributes(array('checked' => $this->_config->application->debug == '1' ? 'checked' : null));
$this->add($title);
$this->add($bgcolor);
$this->add($cryptKey);
$this->add($debug);
}
示例6: initialize
public function initialize()
{
$mobile = new Text('mobile');
$mobile->setLabel('手机号码');
$mobile->addValidators([new Regex(['pattern' => '/1[34578]{1}\\d{9}$/', 'message' => '手机号码格式错误', 'allowEmpty' => true])]);
$this->add($mobile);
}
示例7: initialize
public function initialize($entity = null, $options = null)
{
if (isset($options['edit']) && $options['edit']) {
$id = new Hidden('id');
} else {
$id = new Text('id');
}
$username = new Text('username', array('placeholder' => 'Tran Duy Thien'));
//<input type="text" value="" id="fullName" name="fullName">
$username->setLabel('Tên Tài Khoản');
//<label for="fullName">fullName</label>
$username->addValidators(array(new PresenceOf(array('message' => 'Tài khoản không được rỗng'))));
$this->add($username);
//Password
$password = new Password('password');
$password->setLabel('Mật Khẩu');
$password->addValidators(array(new PresenceOf(array('message' => 'Mật khẩu không được rỗng')), new StringLength(array('min' => 8, 'messageMinimum' => 'Mật khẩu phải lớn hơn 8 ký tự')), new Confirmation(array('message' => 'Mật khẩu không khớp', 'with' => 'confirmPassword'))));
$this->add($password);
//Confirm Password
$confirmPassword = new Password('confirmPassword');
$confirmPassword->setLabel('Nhập lại mật khẩu');
$confirmPassword->addValidators(array(new PresenceOf(array('message' => 'The confirmation password is required'))));
$this->add($confirmPassword);
//Remember
$terms = new Check('terms', array('value' => 'yes'));
$terms->setLabel('Đồng ý với Điều khoản dịch vụ và chính sách bảo mật của chúng tôi');
$terms->addValidator(new Identical(array('value' => 'yes', 'message' => 'Bạn chưa chọn')));
$this->add($terms);
//CSRF
$csrf = new Hidden('csrf');
$csrf->addValidator(new Identical(array('value' => $this->security->getSessionToken(), 'message' => 'CSRF validation failed')));
$this->add($csrf);
//Sign Up
$this->add(new Submit('Sign Up', array('class' => 'btn btn-primary pull-right')));
}
示例8: initialize
/**
* Initialize the products form
*/
public function initialize($entity = null, $options = array())
{
/*======================= usuario_id ================================*/
if (!isset($options['edit'])) {
$element = new Text("usuario_id");
$this->add($element->setLabel("Id"));
} else {
$this->add(new Hidden("usuario_id"));
}
/*======================= usuario_nick ================================*/
$name = new Text("name");
$name->setLabel("Name");
$name->setFilters(array('striptags', 'string'));
$name->addValidators(array(new PresenceOf(array('message' => 'Name is required'))));
$this->add($name);
/*======================= usuario_nombreCompleto ================================*/
$type = new Select('product_types_id', ProductTypes::find(), array('using' => array('id', 'name'), 'useEmpty' => true, 'emptyText' => '...', 'emptyValue' => ''));
$type->setLabel('Type');
$this->add($type);
/*======================= usuario_contrasenia ================================*/
$price = new Text("price");
$price->setLabel("Price");
$price->setFilters(array('float'));
$price->addValidators(array(new PresenceOf(array('message' => 'Price is required')), new Numericality(array('message' => 'Price is required'))));
$this->add($price);
/*======================= usuario_sector ================================*/
/*======================= usuario_email ================================*/
/*======================= usuario_activo ================================*/
/*======================= usuario_fechaCreacion ================================*/
/*======================= usuario_imagen ================================*/
}
示例9: initialize
/**
* @param object $entity
* @param array $options
*/
public function initialize($entity = null, $options = null)
{
//Name
$name = new Text('name', array('placeholder' => 'Full name'));
$name->setLabel('Name');
$name->addValidators(array(new PresenceOf(array('message' => 'The name is required')), new StringLength(array('min' => 8, 'messageMinimum' => 'Name is too short. Minimum 8 characters'))));
$this->add($name);
//Username
$username = new Text('login', array('placeholder' => 'Username'));
$username->addValidators(array(new PresenceOf(array('message' => 'The username is required', 'cancelOnFail' => true)), new StringLength(array('min' => 5, 'messageMinimum' => 'Username is too short. Minimum 5 characters'))));
$this->add($username);
//Password
$password = new Password('password', array('placeholder' => 'Password'));
$password->addValidators(array(new PresenceOf(array('message' => 'The password is required', 'cancelOnFail' => true)), new StringLength(array('min' => 8, 'messageMinimum' => 'Password is too short. Minimum 8 characters')), new Confirmation(array('message' => 'Password doesn\'t match confirmation', 'with' => 'confirmPassword'))));
$this->add($password);
//Confirm Password
$confirmPassword = new Password('confirmPassword', array('placeholder' => 'Confirm Password', 'cancelOnFail' => true));
$confirmPassword->addValidators(array(new PresenceOf(array('message' => 'The confirmation password is required'))));
$this->add($confirmPassword);
//Remember
$terms = new Check('terms', array('value' => 'yes'));
$terms->setLabel('Accept terms and conditions');
$terms->addValidator(new Identical(array('value' => 'yes', 'message' => 'Terms and conditions must be accepted')));
$this->add($terms);
//Sign Up
$this->add(new Submit('Sign Up', array('class' => 'btn btn-success')));
}
示例10: initialize
public function initialize()
{
//añadimos el campo username
$username = new Text('username');
//añadimos la validación para un campo de tipo username y como campo requerido
$username->addValidators(array(new PresenceOf(array('message' => 'El username es requerido'))));
//label para el username
$username->setLabel('Username');
//hacemos que se pueda llamar a nuestro campo username
$this->add($username);
//añadimos el campo password
$password = new Password('password');
//añadimos la validación como campo requerido al password
$password->addValidator(new PresenceOf(array('message' => 'El password es requerido')));
//label para el Password
$password->setLabel('Password');
//hacemos que se pueda llamar a nuestro campo password
$this->add($password);
//prevención de ataques csrf, genera un campo de este tipo
//<input value="dcf7192995748a80780b9cc99a530b58" name="csrf" id="csrf" type="hidden" />
$randomsting = new Hidden('randomsting');
//añadimos la validación para prevenir csrf
/*$csrf->addValidator(
new Identical(array(
'value' => $this->security->getSessionToken(),
'message' => '¡La validación CSRF ha fallado! '.$this->security->getSessionToken()
))
);
*/
//hacemos que se pueda llamar a nuestro campo csrf
$this->add($randomsting);
//añadimos un botón de tipo submit
$submit = $this->add(new Submit('Login', array('class' => 'button primary')));
}
示例11: initialize
public function initialize()
{
$type = new Select('type', Publication::$types, array());
$type->setLabel('Тип пубикации');
$this->add($type);
$title = new Text('title', array('required' => true));
$title->setLabel('Название');
$this->add($title);
$slug = new Text('slug');
$slug->setLabel('Транслитерация');
$this->add($slug);
$date = new Text('date');
$date->setLabel('Дата публикации');
$this->add($date);
$text = new TextArea('text');
$text->setLabel('Текст');
$this->add($text);
$meta_title = new Text('meta_title', array('required' => true));
$meta_title->setLabel('meta-title');
$this->add($meta_title);
$meta_description = new TextArea('meta_description');
$meta_description->setLabel('meta-description');
$this->add($meta_description);
$meta_keywords = new TextArea('meta_keywords');
$meta_keywords->setLabel('meta-keywords');
$this->add($meta_keywords);
$preview_inner = new Check('preview_inner');
$preview_inner->setLabel('Превью внутри публикации');
$preview_inner->setDefault(1);
$this->add($preview_inner);
$image = new File('image');
$image->setLabel('Загрузить превью');
$this->add($image);
}
示例12: initialize
public function initialize($entity = null, $options = null)
{
$city = new Select('cityid', City::find(), array('using' => array('id', 'city'), 'useEmpty' => TRUE, 'emptyText' => $this->di->get('translate')->_('Seleccione una Ciudad')));
$city->setLabel('Ciudad');
$this->add($city);
$township = new Text('township');
$township->setLabel('Sector');
$this->add($township);
$countryvalue = "";
$statevalue = "";
$city = "";
if (isset($entity)) {
if ($entity->getCity()) {
$countryvalue = $entity->getCity()->getCountry()->getCountry();
$statevalue = $entity->getCity()->getState()->getState();
}
}
$country = new Text('country');
$country->setLabel('País');
$country->setDefault($countryvalue);
$this->add($country);
$state = new Text('state');
$state->setDefault($statevalue);
$state->setLabel('Estado');
$this->add($state);
}
示例13: initialize
public function initialize()
{
$name = new Text("name");
$name->setLabel('Name');
$name->addValidator(new PresenceOf(['message' => '<strong>Name</strong> is required.']));
$this->add($name);
$adapter = new Select("adapter", ['Mysql' => 'MySQL']);
$adapter->setLabel('DB type');
$this->add($adapter);
$host = new Text("host");
$host->setLabel('DB host');
$host->addValidator(new PresenceOf(['message' => '<strong>DB host</strong> is required.']));
$this->add($host);
$user = new Text("username");
$user->setLabel('DB user');
$user->addValidator(new PresenceOf(array('message' => '<strong>DB user</strong> is required.')));
$this->add($user);
$pass = new Text("password");
$pass->setLabel('DB pass');
$this->add($pass);
$dbname = new Text("dbname");
$dbname->setLabel('DB name');
$dbname->addValidator(new PresenceOf(array('message' => '<strong>DB name</strong> is required.')));
$this->add($dbname);
//$this->setCsrf();
}
示例14: initialize
public function initialize()
{
$this->_action = 'devices_add';
$name = new Text('name');
$name->setLabel('Devicename');
$name->setFilters(array('striptags', 'string'));
$name->setAttributes(array('class' => 'form-control', 'autocomplete' => 'off'));
$ip = new Text('ip');
$ip->setLabel('IP');
$ip->setFilters(array('striptags', 'string'));
$ip->setAttributes(array('class' => 'form-control', 'autocomplete' => 'off'));
$mac = new Text('mac');
$mac->setLabel('MAC');
$mac->setFilters(array('striptags', 'string'));
$mac->setAttributes(array('class' => 'form-control', 'autocomplete' => 'off'));
$webtemp = new Text('webtemp');
$webtemp->setLabel('Webtemp path');
$webtemp->setFilters(array('striptags', 'string'));
$webtemp->setAttributes(array('class' => 'form-control', 'autocomplete' => 'off'));
$shutdownMethod = new Select('shutdown_method', array('none' => 'None', 'rpc' => 'RPC'), array('useEmpty' => false));
$shutdownMethod->setLabel('Shutdown method');
$showDasboard = new Check('show_on_dashboard');
$showDasboard->setLabel('Show on dashboard');
$showDasboard->setAttributes(array('class' => 'form-control'));
$this->add($name);
$this->add($ip);
$this->add($mac);
$this->add($webtemp);
$this->add($shutdownMethod);
$this->add($showDasboard);
}
示例15: initialize
public function initialize($entity = null, $options = null)
{
// Name
$name = new Text('name');
$name->setLabel('Полное имя');
$name->setFilters(array('striptags', 'string'));
$name->addValidators(array(new PresenceOf(array('message' => 'Имя вводить обязательно'))));
$this->add($name);
// Name
$name = new Text('username');
$name->setLabel('Имя пользователя');
$name->setFilters(array('alpha'));
$name->addValidators(array(new PresenceOf(array('message' => 'Это обязательное поле'))));
$this->add($name);
// Email
$email = new Text('email');
$email->setLabel('E-Mail');
$email->setFilters('email');
$email->addValidators(array(new PresenceOf(array('message' => 'Без email вы не зарегестрируетесь нигде')), new Email(array('message' => 'Это не настоящий email'))));
$this->add($email);
// Password
$password = new Password('password');
$password->setLabel('Пароль');
$password->addValidators(array(new PresenceOf(array('message' => 'Придумайте пароль'))));
$this->add($password);
// Confirm Password
$repeatPassword = new Password('repeatPassword');
$repeatPassword->setLabel('Повторите пароль');
$repeatPassword->addValidators(array(new PresenceOf(array('message' => 'Подтвердите свой пароль'))));
$this->add($repeatPassword);
}