You are here

class content_plugin_display_simple 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

@file Handler for 'content_simple' display.

Hierarchy

Expanded class hierarchy of content_plugin_display_simple

1 string reference to 'content_plugin_display_simple'
content_views_plugins in includes/views/content.views.inc
Implementation of hook_views_plugins.

File

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

View source
class content_plugin_display_simple extends views_plugin_display {
  function execute() {
    return $this->view
      ->render($this->display->id);
  }
  function render() {
    return !empty($this->view->result) || !empty($this->view->style_plugin->definition['even empty']) ? $this->view->style_plugin
      ->render($this->view->result) : '';
  }
  function uses_exposed() {
    return FALSE;
  }

}

Members