Advertisement
asanchez75

Drupal/snippets

Jun 12th, 2011
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. =Links anchor=
  2. <?php
  3. $node = node_load($data->nid);
  4. print l('<div class="thumbnail_text">' . substr(strip_tags($node->teaser),0,80) . '...' . '</div>' , '#', array('external' => TRUE, 'query' => NULL, 'html' => TRUE));
  5.  
  6. =item number for views=
  7. <?php
  8.     $view = views_get_current_view();
  9.     print '<div class="view-counter">Tenemos: ' . $view->total_rows . ' recursos</div>';
  10. ?>
  11.  
  12.  
  13. format_date($vars['node']->created, 'custom', 'l, d \d\e F \d\e\l Y')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement