Search for execute

  1. Search 7.x-3.x for execute
  2. Other projects
Title Object type File name Summary
hook_views_post_execute function docs/docs.php This hook is called right after the execute process. The query has
been executed, but the pre_render() phase has not yet happened for
handlers.
hook_views_pre_execute function docs/docs.php This hook is called right before the execute process. The query is
now fully built, but it has not yet been run through db_rewrite_sql.
view::$executed property includes/view.inc
view::execute function includes/view.inc Execute the view's query.
view::execute_display function includes/view.inc Execute the given display, with the given arguments.
To be called externally by whatever mechanism invokes the view,
such as a page callback, hook_block, etc.
view::execute_hook_block function includes/view.inc Called to get hook_block information from the view and the
named display handler.
view::execute_hook_menu function includes/view.inc Called to get hook_menu() information from the view and the named display handler.
view::post_execute function includes/view.inc Unset the current view, mostly.
view::pre_execute function includes/view.inc Run attachments and let the display do what it needs to do prior
to running.
ViewsSqlTest::executeView function tests/views_query.test Helper function to execute a view with debugging.
views_plugin_display::execute function plugins/views_plugin_display.inc When used externally, this is how a view gets run and returns
data in the format required.
views_plugin_display::pre_execute function plugins/views_plugin_display.inc Set up any variables on the view prior to execution. These are separated
from execute because they are extremely common and unlikely to be
overridden on an individual display.
views_plugin_display_attachment::execute function plugins/views_plugin_display_attachment.inc When used externally, this is how a view gets run and returns
data in the format required.
views_plugin_display_block::execute function plugins/views_plugin_display_block.inc The display block handler returns the structure necessary for a block.
views_plugin_display_block::execute_hook_block function plugins/views_plugin_display_block.inc The default block handler doesn't support configurable items,
but extended block handlers might be able to do interesting
stuff with it.
views_plugin_display_default::execute function plugins/views_plugin_display_default.inc The default execute handler fully renders the view.
views_plugin_display_extender::pre_execute function plugins/views_plugin_display_extender.inc Set up any variables on the view prior to execution.
views_plugin_display_feed::execute function plugins/views_plugin_display_feed.inc Feeds do not go through the normal page theming mechanism. Instead, they
go through their own little theme function and then return NULL so that
Drupal believes that the page has already rendered itself...which it has.
views_plugin_display_page::execute function plugins/views_plugin_display_page.inc The display page handler returns a normal view, but it also does
a drupal_set_title for the page, and does a views_set_page_view
on the view.
views_plugin_display_page::execute_hook_menu function plugins/views_plugin_display_page.inc Add this display's path information to Drupal's menu system.
views_plugin_exposed_form::pre_execute function plugins/views_plugin_exposed_form.inc
views_plugin_pager::execute_count_query function plugins/views_plugin_pager.inc Execute the count query, which will be done just prior to the query
itself being executed.
views_plugin_pager::post_execute function plugins/views_plugin_pager.inc Perform any needed actions just after the query executing.
views_plugin_pager::pre_execute function plugins/views_plugin_pager.inc Perform any needed actions just prior to the query executing.
views_plugin_pager_none::execute_count_query function plugins/views_plugin_pager_none.inc Execute the count query, which will be done just prior to the query
itself being executed.
views_plugin_pager_none::post_execute function plugins/views_plugin_pager_none.inc Perform any needed actions just after the query executing.
views_plugin_query::execute function plugins/views_plugin_query.inc Executes the query and fills the associated view object with according
values.
views_plugin_query_default::execute function plugins/views_plugin_query_default.inc Executes the query and fills the associated view object with according
values.