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


PHP Widget::getAttributes方法代码示例

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


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

示例1: getAttributes

 function getAttributes()
 {
     $attributes = parent::getAttributes();
     if ($this->multiple) {
         $attributes["name"] .= "[]";
     }
     return $attributes;
 }
开发者ID:phpalchemy,项目名称:phpalchemy,代码行数:8,代码来源:Listbox.php

示例2: generate

 /**
  * Parse the template
  *
  * @return string
  */
 public function generate()
 {
     $this->Template = new \FrontendTemplate($this->strTemplate);
     $this->Template->field = $this->objWidget;
     $this->Template->attributes = $this->objWidget->getAttributes();
     $this->Template->tagEnding = $this->strTagEnding;
     $this->Template->hideLabel = $this->hideLabel || $this->objWidget->hideLabel;
     $this->Template->explanation = $this->explanation || $this->objWidget->explanation;
     $this->Template->invisible = $this->invisible || $this->objWidget->invisible;
     $this->Template->help = $this->parseHelp();
     $this->setCssClasses();
     $this->setGroupCssClasses();
     $this->compile();
     $this->Template->class = $this->getCssClasses();
     $this->Template->groupClass = $this->getGroupCssClasses();
     $this->Template->attributes = $this->objWidget->getAttributes();
     $this->Template->placeholder = $this->parsePlaceholder();
     return $this->Template->parse();
 }
开发者ID:heimrichhannot,项目名称:contao-bootstrapper,代码行数:24,代码来源:BootstrapperFormField.php

示例3: getAttributes

 /**
  * Return all attributes as string
  *
  * @param array $arrStrip An optional array with attributes to strip
  *
  * @return string The attributes string
  */
 public function getAttributes($arrStrip = array())
 {
     // The "required" attribute only makes sense for single checkboxes
     if (count($this->arrOptions) == 1 && $this->mandatory) {
         $this->arrAttributes['required'] = 'required';
     }
     return parent::getAttributes($arrStrip);
 }
开发者ID:qzminski,项目名称:contao-core-bundle,代码行数:15,代码来源:FormCheckBox.php

示例4: getAttributes

 /**
  * Return all attributes as string
  *
  * @param array $arrStrip An optional array with attributes to strip
  *
  * @return string The attributes string
  */
 public function getAttributes($arrStrip = array())
 {
     /** @var \PageModel $objPage */
     global $objPage;
     $arrStrip = array();
     // XHTML does not support maxlength
     if ($objPage->outputFormat == 'xhtml') {
         $arrStrip[] = 'maxlength';
     }
     return parent::getAttributes($arrStrip);
 }
开发者ID:bytehead,项目名称:contao-core,代码行数:18,代码来源:FormTextArea.php


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