欢迎各位兄弟 发布技术文章
这里的技术是共享的
7 views.api.php | hook_views_post_execute(&$view) |
6 docs.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.
function hook_views_post_execute(&$view) { // example code here } 来自
https://api.drupal.org/api/views/docs!docs.php/function/hook_views_post_execute/6
7 views.api.php | hook_views_post_execute(&$view) |
6 docs.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.
$view: The view object about to be processed.
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.'));
}
}
function foo_views_post_execute(&$view) {
$seen_rows = array();
$newResults = array();
for($i = 0; $i < count($view->result); ++$i) {
if (!in_array($view->result[$i]->nid, $seen_rows)) {
$newResults[] = $view->results[$i];
}
$seen_rows[] = $view->result[$i]->nid;
}
$view->result = $newResults;
}
you can use the hook using following code sample:
<?php
function test_module_views_post_execute(&$view) {
$newResults = 'this is simple test text';
$view->result = $newResults;
}
?>
来自
https://api.drupal.org/api/views/views.api.php/function/hook_views_post_execute/7