|
|
Drupal example source code file (views_plugin_display_default.inc)
The views_plugin_display_default.inc Drupal example source code<?php // $Id: views_plugin_display_default.inc,v 1.1 2008/09/03 19:21:30 merlinofchaos Exp $ /** * @file * Contains the default display plugin. */ /** * A plugin to handle defaults on a view. * * @ingroup views_display_plugins */ class views_plugin_display_default extends views_plugin_display { /** * Determine if this display is the 'default' display which contains * fallback settings */ function is_default_display() { return TRUE; } /** * The default execute handler fully renders the view. * * For the simplest use: * @code * $output = $view->execute_display('default', $args); * @endcode * * For more complex usages, a view can be partially built: * @code * $view->set_arguments($args); * $view->build('default'); // Build the query * $view->execute(); // Run the query * $output = $view->render(); // Render the view * @endcode * * If short circuited at any point, look in $view->build_info for * information about the query. After execute, look in $view->result * for the array of objects returned from db_query. * * You can also do: * @code * $view->set_arguments($args); * $output = $view->render('default'); // Render the view * @endcode * * This illustrates that render is smart enough to call build and execute * if these items have not already been accomplished. * * Note that execute also must accomplish other tasks, such * as setting page titles, breadcrumbs, and generating exposed filter * data if necessary. */ function execute() { return $this->view->render($this->display->id); } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_plugin_display_default.inc source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.