You are here

function content_plugin_display_simple::render in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 includes/views/handlers/content_plugin_display_simple.inc \content_plugin_display_simple::render()

File

includes/views/handlers/content_plugin_display_simple.inc, line 12
Handler for 'content_simple' display.

Class

content_plugin_display_simple
@file Handler for 'content_simple' display.

Code

function render() {
  return !empty($this->view->result) || !empty($this->view->style_plugin->definition['even empty']) ? $this->view->style_plugin
    ->render($this->view->result) : '';
}