Full ELMS Learning Network documentation
function hook_views_post_execute
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).cis7 views.api.php | hook_views_post_execute(&$view) |
cle7 views.api.php | hook_views_post_execute(&$view) |
elmsmedia7 views.api.php | hook_views_post_execute(&$view) |
icor7 views.api.php | hook_views_post_execute(&$view) |
meedjum_blog7 views.api.php | hook_views_post_execute(&$view) |
mooc7 views.api.php | hook_views_post_execute(&$view) |
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.
Adding output to the view can be accomplished by placing text on $view->attachment_before and $view->attachment_after. Altering the content can be achieved by editing the items of $view->result.
Parameters
$view: The view object about to be processed.
Related topics
1 invocation of hook_views_post_execute()
- view::execute in sites/
all/ modules/ ulmus/ views/ includes/ view.inc - Execute the view's query.
File
- sites/
all/ modules/ ulmus/ views/ views.api.php, line 915 - Describe hooks provided by the Views module.
Code
function hook_views_post_execute(&$view) {
// If there are more than 100 results, show a message that encourages the user
// to change the filter settings.
// (This action could be performed later in the execution process, but not
// earlier.)
if ($view->total_rows > 100) {
drupal_set_message(t('You have more than 100 hits. Use the filter settings to narrow down your list.'));
}
}