本文整理匯總了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));
}
示例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,
)
);
}
示例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"));
}
示例4: getAttributes
public function getAttributes()
{
return array_merge(parent::getAttributes(), $this->getEditorConfig()->getAttributes());
}
示例5: getAttributes
function getAttributes()
{
return array_merge(parent::getAttributes(), array('tinymce' => 'true', 'style' => 'width: 97%; height: ' . $this->rows * 16 . 'px', 'value' => null));
}
示例6: getAttributes
function getAttributes()
{
$attributes = parent::getAttributes();
$attributes['configs'] = $this->editorConfigs;
return $attributes;
}
示例7: getAttributes
/**
* Returns the attributes
*
* @return array
*/
public function getAttributes()
{
return array_merge(parent::getAttributes(), array('placeholder' => $this->getPlaceholder()));
}
示例8: getAttributes
public function getAttributes()
{
return array_merge(parent::getAttributes(), array('data-mode' => $this->getMode(), 'data-ace-path' => $this->getAcePath(), 'data-theme' => $this->getTheme()));
}