function views_plugin_display_block::execute in Views (for Drupal 7) 6.2
Same name and namespace in other branches
- 6.3 plugins/views_plugin_display_block.inc \views_plugin_display_block::execute()
- 7.3 plugins/views_plugin_display_block.inc \views_plugin_display_block::execute()
The display block handler returns the structure necessary for a block.
Overrides views_plugin_display::execute
File
- plugins/
views_plugin_display_block.inc, line 47 - Contains the block display plugin.
Class
- views_plugin_display_block
- The plugin that handles a block.
Code
function execute() {
// Prior to this being called, the $view should already be set to this
// display, and arguments should be set on the view.
$info['content'] = $this->view
->render();
$info['subject'] = filter_xss_admin($this->view
->get_title());
if (!empty($this->view->result) || $this
->get_option('empty') || !empty($this->view->style_plugin->definition['even empty'])) {
return $info;
}
}