Search for execute
Title | Object type | File name | Summary |
---|---|---|---|
hook_views_post_execute | function | ./ |
This hook is called right after the execute process. |
hook_views_pre_execute | function | ./ |
This hook is called right before the execute process. |
view::$executed | property | includes/ |
State variable. |
view::execute | function | includes/ |
Execute the view's query. |
view::execute_display | function | includes/ |
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/ |
Called to get hook_block information from the view and the named display handler. |
view::execute_hook_menu | function | includes/ |
Called to get hook_menu() info from the view and the named display handler. |
view::post_execute | function | includes/ |
Unset the current view, mostly. |
view::pre_execute | function | includes/ |
Run attachments and let the display do what it needs to do prior to running. |
view::_post_execute | function | includes/ |
Run the post_execute() on all active handlers. |
ViewsTestCase::executeView | function | tests/ |
Execute a view with debugging. |
views_handler::post_execute | function | includes/ |
Run after the view is executed, before the result is cached. |
views_handler_field_field::post_execute | function | modules/ |
Load the entities for all fields that are about to be displayed. |
views_plugin_display::execute | function | plugins/ |
When used externally, this is how a view gets run and returns data in the format required. |
views_plugin_display::pre_execute | function | plugins/ |
Set up any variables on the view prior to execution. |
views_plugin_display_attachment::execute | function | plugins/ |
When used externally, this is how a view gets run and returns data in the format required. |
views_plugin_display_block::execute | function | plugins/ |
The display block handler returns the structure necessary for a block. |
views_plugin_display_block::execute_hook_block_list | function | plugins/ |
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/ |
The default execute handler fully renders the view. |
views_plugin_display_extender::pre_execute | function | plugins/ |
Set up any variables on the view prior to execution. |
views_plugin_display_feed::execute | function | plugins/ |
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/ |
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/ |
Add this display's path information to Drupal's menu system. |
views_plugin_exposed_form::post_execute | function | plugins/ |
|
views_plugin_exposed_form::pre_execute | function | plugins/ |
|
views_plugin_pager::execute_count_query | function | plugins/ |
Execute the count query, which will be done just prior to the query itself being executed. |
views_plugin_pager::post_execute | function | plugins/ |
Perform any needed actions just after the query executing. |
views_plugin_pager::pre_execute | function | plugins/ |
Perform any needed actions just prior to the query executing. |
views_plugin_pager_none::execute_count_query | function | plugins/ |
Execute the count query, which will be done just prior to the query itself being executed. |
views_plugin_pager_none::post_execute | function | plugins/ |
Perform any needed actions just after the query executing. |
views_plugin_query::execute | function | plugins/ |
Executes the query and fills the associated view object with according values. |
views_plugin_query_default::execute | function | plugins/ |
Executes the query and fills the associated view object with according values. |