Projet

Général

Profil

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

root / drupal7 / sites / all / modules / views_pdf / modules / views_view_field / views_view_field.module @ 11b63505

1
<?php
2

    
3
/**
4
 * @file
5
 * The views field is used to add a field, which can include another view into
6
 * the current view.
7
 */
8

    
9
/**
10
 * Implementation of hook_views_api().
11
 */
12
function views_view_field_views_api() {
13
  return array(
14
    'api' => 3,
15
  );
16
}