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


PHP Input::render方法代碼示例

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


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

示例1: render

 public function render()
 {
     $checked = $this->getValue() == $this->get('value') ? 'checked' : null;
     $this->set('checked', $checked);
     $this->set('type', 'radio');
     return parent::render();
 }
開發者ID:irfanevrens,項目名稱:html,代碼行數:7,代碼來源:Radio.php

示例2: render

 /**
  * @param  string $name        The element name
  * @param  string $value       The this widget is checked if value is not null
  * @param  array  $attributes  An array of HTML attributes to be merged with the default HTML attributes
  * @param  array  $errors      An array of errors for the field
  *
  * @return string An HTML tag string
  *
  * @see 
  */
 public function render($name, $value = null, $attributes = array(), $errors = array())
 {
     if (null !== $value && $value !== false) {
         $attributes['checked'] = 'checked';
     }
     if (!isset($attributes['value']) && null !== $this->getOption('value_attribute_value')) {
         $attributes['value'] = $this->getOption('value_attribute_value');
     }
     return parent::render($name, null, $attributes, $errors);
 }
開發者ID:rande,項目名稱:sfFormBundle,代碼行數:20,代碼來源:InputCheckbox.php

示例3: render

 public function render()
 {
     $this->setAttribute('type', 'checkbox');
     if ($this->value) {
         $this->setAttribute('checked', 'checked');
     } else {
         $this->setAttribute('checked');
     }
     return parent::render();
 }
開發者ID:php-yaoi,項目名稱:php-yaoi,代碼行數:10,代碼來源:Checkbox.php

示例4: render

 /**
  * Render the HTML element in the provided context
  *
  * @param array $context
  *
  * @return string The HTML string output
  */
 public function render($context = [])
 {
     $element = clone $this->element;
     $value = $this->element->getAttribute('value', false);
     if ($value !== false) {
         $this->element->getAttributes()->remove('value');
     }
     $html = parent::render($context);
     $this->element = $element;
     return $html;
 }
開發者ID:slickframework,項目名稱:form,代碼行數:18,代碼來源:File.php

示例5: render

 public function render()
 {
     $checked = null;
     if (is_array($this->getValue()) && in_array($this->get('value'), $this->getValue())) {
         $checked = 'checked';
     } elseif ($this->get('value') == $this->getValue()) {
         $checked = 'checked';
     }
     $this->set('checked', $checked);
     $this->set('type', 'checkbox');
     return parent::render();
 }
開發者ID:irfanevrens,項目名稱:html,代碼行數:12,代碼來源:Checkbox.php

示例6: render

 public function render()
 {
     $this->setType('password');
     return parent::render();
 }
開發者ID:pr-of-it,項目名稱:t4,代碼行數:5,代碼來源:Password.php

示例7: render

 public function render()
 {
     $this->checkBinding();
     return parent::render();
 }
開發者ID:adamwathan,項目名稱:form,代碼行數:5,代碼來源:Checkbox.php

示例8: render

 /**
  * @return string
  */
 public function render()
 {
     $this->attributes['value'] = null;
     return parent::render();
 }
開發者ID:sevikerr,項目名稱:form,代碼行數:8,代碼來源:Password.php

示例9: render

 public function render()
 {
     return parent::render() . $this->getLabel();
 }
開發者ID:Clansuite,項目名稱:Clansuite,代碼行數:4,代碼來源:Checkbox.php

示例10: render

 public function render($key, $extra = '')
 {
     return parent::render($key, $extra . ' class="simwp-color-field"');
 }
開發者ID:dumday,項目名稱:simwp,代碼行數:4,代碼來源:ColorPicker.php

示例11: render

 public function render()
 {
     $this->set('type', 'hidden');
     $this->set('value', $this->getValue());
     return parent::render();
 }
開發者ID:siriusphp,項目名稱:html,代碼行數:6,代碼來源:Hidden.php

示例12: render

 public function render()
 {
     $this->set('type', 'file');
     return parent::render();
 }
開發者ID:irfanevrens,項目名稱:html,代碼行數:5,代碼來源:File.php

示例13: render

 /**
  * @param  string $name        The element name
  * @param  string $value       The password stored in this widget, will be masked by the browser.
  * @param  array  $attributes  An array of HTML attributes to be merged with the default HTML attributes
  * @param  array  $errors      An array of errors for the field
  *
  * @return string An HTML tag string
  *
  * @see sfWidgetForm
  */
 public function render($name, $value = null, $attributes = array(), $errors = array())
 {
     return parent::render($name, $this->getOption('always_render_empty') ? null : $value, $attributes, $errors);
 }
開發者ID:rande,項目名稱:sfFormBundle,代碼行數:14,代碼來源:InputPassword.php

示例14: render

 public function render($name, $value = null, array $attrs = array())
 {
     return parent::render($name, null, $attrs);
 }
開發者ID:vincenta,項目名稱:stato,代碼行數:4,代碼來源:Inputs.php


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