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


PHP TextareaField::getAttributes方法代码示例

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


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

示例1: getAttributes

 public function getAttributes()
 {
     return array_merge(parent::getAttributes(), array('tinymce' => 'true', 'style' => 'width: 97%; height: ' . $this->rows * 16 . 'px', 'value' => null, 'data-config' => $this->editorConfig));
 }
开发者ID:ivoba,项目名称:silverstripe-framework,代码行数:4,代码来源:HtmlEditorField.php

示例2: getAttributes

	function getAttributes() {
		return array_merge(
			parent::getAttributes(),
			array(
				'tinymce' => 'true',
				'style'   => 'width: 97%; height: ' . ($this->rows * 16) . 'px', // prevents horizontal scrollbars
				'value' => null,
			)
		);
	}
开发者ID:redema,项目名称:sapphire,代码行数:10,代码来源:HtmlEditorField.php

示例3: getAttributes

 /**
  * Generates the attributes to be used on the field
  * @return {array} Array of attributes to be used on the form field
  */
 public function getAttributes()
 {
     return array_merge(parent::getAttributes(), array('style' => 'width: 97%; max-width: 100%; height: ' . $this->rows * 16 . 'px; resize: none;', 'wrap-mode' => $this->wrap_mode ? "true" : "false"));
 }
开发者ID:axllent,项目名称:silverstripe-gfmarkdown,代码行数:8,代码来源:MarkdownEditor.php

示例4: getAttributes

 public function getAttributes()
 {
     return array_merge(parent::getAttributes(), $this->getEditorConfig()->getAttributes());
 }
开发者ID:jacobbuck,项目名称:silverstripe-framework,代码行数:4,代码来源:HTMLEditorField.php

示例5: getAttributes

 function getAttributes()
 {
     return array_merge(parent::getAttributes(), array('tinymce' => 'true', 'style' => 'width: 97%; height: ' . $this->rows * 16 . 'px', 'value' => null));
 }
开发者ID:prostart,项目名称:cobblestonepath,代码行数:4,代码来源:HtmlEditorField.php

示例6: getAttributes

 function getAttributes()
 {
     $attributes = parent::getAttributes();
     $attributes['configs'] = $this->editorConfigs;
     return $attributes;
 }
开发者ID:helpfulrobot,项目名称:undefinedoffset-silverstripe-markdown,代码行数:6,代码来源:MarkdownEditorField.php

示例7: getAttributes

 /**
  * Returns the attributes
  * 
  * @return array
  */
 public function getAttributes()
 {
     return array_merge(parent::getAttributes(), array('placeholder' => $this->getPlaceholder()));
 }
开发者ID:silvercart,项目名称:silvercart,代码行数:9,代码来源:SilvercartTextareaField.php

示例8: getAttributes

 public function getAttributes()
 {
     return array_merge(parent::getAttributes(), array('data-mode' => $this->getMode(), 'data-ace-path' => $this->getAcePath(), 'data-theme' => $this->getTheme()));
 }
开发者ID:helpfulrobot,项目名称:nathancox-codeeditorfield,代码行数:4,代码来源:CodeEditorField.php


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