當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。