Projet

Général

Profil

Paste
Télécharger (143 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / views_data_export / theme / views-data-export-csv-body.tpl.php @ 56aebcb7

1
<?php
2

    
3
// Print out exported items.
4
foreach ($themed_rows as $count => $item_row):
5
  print implode($separator, $item_row) . "\r\n";
6
endforeach;