Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. if (arg(0) == 'node') {
  2. $node = menu_get_object();
  3. }
  4. $curNode = $node->nid;
  5. $curNodeDate = $node->created;
  6.  
  7. dsm($node);
  8.  
  9. $type = "article";
  10. $nodes = node_load_multiple(array(), array('type' => $type));
  11.  
  12. dsm($nodes);
  13.  
  14. $finalNid = array();
  15.  
  16. foreach($nodes as $products):
  17. if( intval($products->created) > intval($curNodeDate) ){
  18. dsm($products->created .'>'. $curNodeDate .'---'. $products->nid .'~~'. $products->title );
  19. $finalNid[] = $products->nid;
  20. }
  21. endforeach;
  22.  
  23. foreach($nodes as $products):
  24. if( intval($products->created) < intval($curNodeDate) ){
  25. dsm($products->created .'<'. $curNodeDate .'---'. $products->nid .'~~'. $products->title );
  26. $finalNid[] = $products->nid;
  27. }
  28. endforeach;
  29.  
  30. dsm(implode("," , $finalNid));
  31.  
  32. return implode("," , $finalNid);
  33.  
  34. 1416508384>1416508382---65~~Rimmel's Georgia May Jagger & COTY partner with DBC
  35. 1416508383>1416508382---66~~Daisy Marc Jacobs Tweetshop Grabs the Attention of the Industry
  36. 1416508390>1416508382---68~~COTY's Mario Reis
  37. 1416508386>1416508382---71~~Beauty Trends for this Holiday Season
  38. 1416508385>1416508382---72~~COTY’s Catherine Walsh Honored
  39. 1416508388>1416508382---74~~ONE COTY - Looking at COTY as a Whole
  40. 1416508387>1416508382---75~~Roberto Cavalli
  41. 1416508389>1416508382---80~~A modern story of seduction
  42. 1416764226>1416508382---86~~Sir Ken Robinson
  43. 1416810455>1416508382---87~~COTY’s Svetlana Omelchenko makes the 2014 Top 100 OUTstanding LGBT Business Leaders List
  44. 1413318695<1416508382---2~~philosophy bringing hope & grace to mental health efforts
  45. 1413318711<1416508382---3~~Q&A with Ann Gottlieb
  46. 1413402303<1416508382---6~~Meet COTY CMO of Skincare
  47. 1416508381<1416508382---67~~Spotlight On Leadership: David Booth
  48. 1415666899<1416508382---73~~Creative Collaborations: COTY and Avon
  49. 65,66,68,71,72,74,75,80,86,87,2,3,6,67,73
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement