Search for execute

  1. Other projects
Title Object type File name Summary
hook_views_post_execute function ./views.api.php This hook is called right after the execute process.
hook_views_pre_execute function ./views.api.php This hook is called right before the execute process.
view::$executed property includes/view.inc State variable.
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_list 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() info 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.
view::_post_execute function includes/view.inc Run the post_execute() on all active handlers.
ViewsTestCase::executeView function tests/views_query.test Execute a view with debugging.
views_handler::post_execute function includes/handlers.inc Run after the view is executed, before the result is cached.
views_handler_field_field::post_execute function modules/field/views_handler_field_field.inc Load the entities for all fields that are about to be displayed.
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.
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_list 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::post_execute function plugins/views_plugin_exposed_form.inc
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.