Projet

Général

Profil

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

root / drupal7 / sites / all / modules / ctools / includes / content.plugin-type.inc @ 7e72b748

1
<?php
2

    
3
/**
4
 * @file
5
 * Contains plugin type registration information for the content tool.
6
 */
7

    
8
function ctools_content_plugin_type(&$items) {
9
  $items['content_types'] = array(
10
    'cache' => FALSE,
11
    'process' => array(
12
      'function' => 'ctools_content_process',
13
      'file' => 'content.inc',
14
      'path' => drupal_get_path('module', 'ctools') . '/includes',
15
    ),
16
  );
17
}