Issue #2003324 by jeroen12345, toddtomlinson: Rename Views method render_textarea() to renderTextarea().
parent
7ff44499f4
commit
365637ac48
|
@ -54,7 +54,7 @@ class Text extends AreaPluginBase {
|
|||
$format = isset($this->options['format']) ? $this->options['format'] : filter_default_format();
|
||||
if (!$empty || !empty($this->options['empty'])) {
|
||||
return array(
|
||||
'#markup' => $this->render_textarea($this->options['content'], $format),
|
||||
'#markup' => $this->renderTextarea($this->options['content'], $format),
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -64,7 +64,7 @@ class Text extends AreaPluginBase {
|
|||
/**
|
||||
* Render a text area, using the proper format.
|
||||
*/
|
||||
function render_textarea($value, $format) {
|
||||
public function renderTextarea($value, $format) {
|
||||
if ($value) {
|
||||
if ($this->options['tokenize']) {
|
||||
$value = $this->view->style_plugin->tokenize_value($value, 0);
|
||||
|
|
|
@ -48,7 +48,7 @@ class TextCustom extends AreaPluginBase {
|
|||
function render($empty = FALSE) {
|
||||
if (!$empty || !empty($this->options['empty'])) {
|
||||
return array(
|
||||
'#markup' => $this->render_textarea($this->options['content']),
|
||||
'#markup' => $this->renderTextarea($this->options['content']),
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -58,7 +58,7 @@ class TextCustom extends AreaPluginBase {
|
|||
/**
|
||||
* Render a text area with filter_xss_admin.
|
||||
*/
|
||||
function render_textarea($value) {
|
||||
public function renderTextarea($value) {
|
||||
if ($value) {
|
||||
if ($this->options['tokenize']) {
|
||||
$value = $this->view->style_plugin->tokenize_value($value, 0);
|
||||
|
|
Loading…
Reference in New Issue