hook_views_post_render

D6 Views 2: Limit the total number of items returned by a view *including* items from an attached display

  1. function fooballs_views_post_render(&$view){
  2.   if ($view->name == "test"){
  3.     if ($view->current_display == "attachment_1"){
  4.       $attachment_count = count($view->result);
  5.       if ($attachment_

I used hook_views_post_render to change the output of a view, I just want to be sure that i didn't do it wrong

  1. function royalty_views_post_render(&$view, &$output, &$cache) {
  2.  if($view->name = 'product_list') {
  3.   $output ='';
  4.   //$cache ='';
  5.   if($view->style_plugin->rendered_fields){
  6.    foreach($view->s

I used hook_views_post_render to change the output of a view, I just want to be sure that i didn't do it wrong

  1. function myview_views_post_render(&$view, &$output, &$cache) {
  2.  //dvm($cache);
  3.  
  4.  if($view->name = 'product_list') {
  5.   dpm($view); //There is a link per image
  6.   $output ='';
  7.   //$cache ='';
  8.   i
Syndicate content