You are here

function party_plugin_display_party_piece::execute in Party 7

Same name and namespace in other branches
  1. 8.2 includes/views/party_plugin_display_party_piece.inc \party_plugin_display_party_piece::execute()

metacribbed from eva. may need work. @todo this doesn't even seem to run!?!?!

Overrides views_plugin_display::execute

File

includes/views/party_plugin_display_party_piece.inc, line 119
Views plugin for party pieces.

Class

party_plugin_display_party_piece
@file Views plugin for party pieces.

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.
  $this->view
    ->build();

  // And now render the view.
  return $this->view
    ->render();
}