From 365637ac48c484059e27370057c778ddfcb28990 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 29 May 2013 13:59:25 +0100 Subject: [PATCH] Issue #2003324 by jeroen12345, toddtomlinson: Rename Views method render_textarea() to renderTextarea(). --- .../modules/views/lib/Drupal/views/Plugin/views/area/Text.php | 4 ++-- .../views/lib/Drupal/views/Plugin/views/area/TextCustom.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/Text.php b/core/modules/views/lib/Drupal/views/Plugin/views/area/Text.php index 4c926ad60d5..cd45efe2db3 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/area/Text.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/area/Text.php @@ -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); diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/TextCustom.php b/core/modules/views/lib/Drupal/views/Plugin/views/area/TextCustom.php index 002537ad5ff..55c547bc82f 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/area/TextCustom.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/area/TextCustom.php @@ -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);