本文整理汇总了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()));
}