You are here

function views_content_context_get_output in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 views_content/views_content.module \views_content_context_get_output()

API function to get the view.

12 calls to views_content_context_get_output()
views_content_node_from_view_context in views_content/plugins/relationships/node_from_view.inc
Return a new context based on an existing context.
views_content_term_from_view_context in views_content/plugins/relationships/term_from_view.inc
Return a new context based on an existing context.
views_content_user_from_view_context in views_content/plugins/relationships/user_from_view.inc
Return a new context based on an existing context.
views_content_views_attachments_content_type_render in views_content/plugins/content_types/views_attachments.inc
Render the node_terms content type.
views_content_views_empty_content_type_render in views_content/plugins/content_types/views_empty.inc
Render the node_terms content type.

... See full list

File

views_content/views_content.module, line 178
Provides views as panels content, configurable by the administrator. Each view provided as panel content must be configured in advance, but once configured, building panels with views is a little bit simpler.

Code

function views_content_context_get_output(&$context) {
  if (empty($context->output)) {
    $view = views_content_context_get_view($context);
    $context->output = $view
      ->execute_display($context->data['display']);
  }
  return $context->output;
}