当前位置: 首页>>代码示例>>PHP>>正文


PHP FormBuilder::password方法代码示例

本文整理汇总了PHP中Collective\Html\FormBuilder::password方法的典型用法代码示例。如果您正苦于以下问题:PHP FormBuilder::password方法的具体用法?PHP FormBuilder::password怎么用?PHP FormBuilder::password使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Collective\Html\FormBuilder的用法示例。


在下文中一共展示了FormBuilder::password方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: password

 /**
  * Create a password input field.
  *
  * @param  string  $name
  * @param  array   $options
  *
  * @return string
  */
 public function password($name, $options = [])
 {
     $this->addErrorClass($name, $options);
     $tags['input'] = parent::password($name, $options);
     $tags['error'] = $this->getErrorTag($name);
     return $this->buildTags($tags);
 }
开发者ID:nerea91,项目名称:laravel,代码行数:15,代码来源:Foundation.php

示例2: getFormGroupPassword

 public function getFormGroupPassword($label, $id, $value, $errors)
 {
     $feedBackSelector = $this->getFeedBackSelector($errors, $id);
     $feedBackHtml = $this->getFeedBackHtml($errors, $id);
     $retval = "<div class=\"form-group  " . $feedBackSelector . "\">\n                " . parent::label('' . $id . '', '' . $label . ':', ['class' => 'control-label']) . "\n                " . parent::password('' . $id . '', ['class' => 'form-control']) . "\n                " . $feedBackHtml . "\n            </div>";
     return $retval;
 }
开发者ID:wi-development,项目名称:my-framework,代码行数:7,代码来源:FormBuilder.php

示例3: input

 /**
  * Create the input group for an element with the correct classes for errors.
  *
  * @param  string  $type
  * @param  string  $name
  * @param  string  $label
  * @param  string  $value
  * @param  array   $options
  * @return string
  */
 public function input($type, $name, $label = null, $value = null, array $options = [], $extra = null)
 {
     $label = $label === false ? $label : $this->getLabelTitle($label, $name);
     $options = $this->getFieldOptions($options, $name);
     $inputElement = $type === 'password' ? $this->form->password($name, $options) : $this->form->{$type}($name, $value, $options);
     $wrapperOptions = $this->isHorizontal() ? ['class' => $this->getRightColumnClass()] : [];
     $wrapperElement = '<div' . $this->html->attributes($wrapperOptions) . '>' . $inputElement . $this->getFieldError($name) . '</div>';
     return $label ? $this->getFormGroupWithLabel($name, $label, $wrapperElement, $extra) : $this->getFormGroup($name, $wrapperElement, $extra);
 }
开发者ID:jor3l,项目名称:bootstrap-form,代码行数:19,代码来源:BootstrapForm.php

示例4: input

 /**
  * Create the input group for an element with the correct classes for errors.
  *
  * @param  string  $type
  * @param  string  $name
  * @param  string  $label
  * @param  string  $value
  * @param  array   $options
  * @return string
  */
 public function input($type, $name, $label = null, $value = null, array $options = [])
 {
     $label = $this->getLabelTitle($label, $name);
     $options = $this->getFieldOptions($options);
     $wrapperOptions = [];
     if ($this->getType() === Type::HORIZONTAL) {
         $wrapperOptions = ['class' => $this->getRightColumnClass()];
     }
     $inputElement = $type == 'password' ? $this->form->password($name, $options) : $this->form->{$type}($name, $value, $options);
     $groupElement = '<div ' . $this->html->attributes($wrapperOptions) . '>' . $inputElement . $this->getFieldError($name) . '</div>';
     return $this->getFormGroupWithLabel($name, $label, $groupElement);
 }
开发者ID:jeylabs,项目名称:larastrap,代码行数:22,代码来源:BootstrapForm.php

示例5: buildControl

 /**
  * Build all control with the css class, label, and input.
  *
  * @param       $type
  * @param       $name
  * @param null  $value
  * @param array $attributes
  * @param array $options
  * @return string
  */
 public function buildControl($type, $name, $value = null, $attributes = [], $options = [])
 {
     switch ($type) {
         case 'select':
             $options = ['' => config('field-builder.select')] + $options;
             return $this->form->select($name, $options, $value, $attributes);
         case 'password':
             return $this->form->password($name, $attributes);
         case 'checkbox':
             return $this->form->checkbox($name, $value, isset($attributes['checked']), $attributes);
         case 'textarea':
             return $this->form->textarea($name, $value, $attributes);
         case 'number':
             return $this->form->number($name, $value, $attributes);
         case 'radio':
             return $this->form->radio($name, $value, $attributes);
         case 'email':
             return $this->form->email($name, $value, $attributes);
         default:
             return $this->form->input($type, $name, $value, $attributes);
     }
 }
开发者ID:socieboy,项目名称:forms,代码行数:32,代码来源:FieldBuilder.php

示例6: password

 /**
  * Create a password input field.
  *
  * @param string $name
  * @param array $options
  * @return string 
  * @static 
  */
 public static function password($name, $options = array())
 {
     return \Collective\Html\FormBuilder::password($name, $options);
 }
开发者ID:alvarobfdev,项目名称:BaseCRUDproject,代码行数:12,代码来源:_ide_helper.php

示例7: password

 public function password($name, $options = [])
 {
     $options = $this->setOptionClasses($name, $options, ['form-control']);
     $controlOptions = $this->getControlOptions(collect($options));
     $controlHtml = parent::password($name, $controlOptions->toArray());
     return $this->renderControl('password', $controlHtml, $name, '', $options);
 }
开发者ID:genealabs,项目名称:laravel-casts,代码行数:7,代码来源:FormBuilder.php

示例8: password

 /**
  * {@inheritdoc}
  * @param string $name       The name of the password input
  * @param array  $attributes The attributes of the input
  * @return string
  */
 public function password($name, $attributes = array())
 {
     $attributes['class'] = isset($attributes['class']) ? self::FORM_CONTROL . ' ' . $attributes['class'] : self::FORM_CONTROL;
     return parent::password($name, $attributes);
 }
开发者ID:JaapMoolenaar,项目名称:bootstrapper,代码行数:11,代码来源:Form.php

示例9: function

    $addon .= '<span class="fa fa-' . $content . '"></span>';
    $addon .= "</span>";
    $element = Form::password($name, field_attributes($name, $attributes));
    $out = '<div class="input-group">';
    $out .= $end ? '' : $addon;
    $out .= $element;
    $out .= $end ? $addon : '';
    $out .= '</div>';
    return field_wrapper($name, $label, $out);
});
Form::macro('passwordFieldIconClean', function ($name, $label = NULL, $content = 'lock', $end = false, array $attributes = [], $value = NULL) {
    $addon = '<span class="input-group-addon">';
    $addon .= '<span class="fa fa-' . $content . '"></span>';
    $addon .= "</span>";
    $attributes = array_merge($attributes, ['placeholder' => $label]);
    $element = Form::password($name, field_attributes($name, $attributes));
    $out = '<div class="input-group">';
    $out .= $end ? '' : $addon;
    $out .= $element;
    $out .= $end ? $addon : '';
    $out .= '</div>';
    return field_wrapper($name, $out, '');
});
HTML::macro('modal', function ($id, $title, $msg, $confirm = 'Sim', $close = 'Fechar') {
    $out = '<div class="modal fade" id="' . $id . '">
        <div class="modal-dialog modal-sm">
        <div class="modal-content">
        <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title">' . $title . '</h4>
        </div>
开发者ID:brunoti,项目名称:html-macros,代码行数:31,代码来源:macros.php


注:本文中的Collective\Html\FormBuilder::password方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。