You are here

public function views_handler_area_text_custom::render in Views (for Drupal 7) 7.3

Render the area.

Overrides views_handler_area_text::render

File

handlers/views_handler_area_text_custom.inc, line 48
Definition of views_handler_area_text_custom.

Class

views_handler_area_text_custom
Views area text custom handler.

Code

public function render($empty = FALSE) {
  if (!$empty || !empty($this->options['empty'])) {
    return $this
      ->render_textarea_custom($this->options['content']);
  }
  return '';
}