summaryrefslogtreecommitdiff
path: root/sites/all/modules/ctools/includes/content.plugin-type.inc
blob: a0debc3e5ee779060d40442dc2891e46889d3b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

/**
 * @file
 * Contains plugin type registration information for the content tool.
 */

function ctools_content_plugin_type(&$items) {
  $items['content_types'] = array(
    'cache' => FALSE,
    'process' => array(
      'function' => 'ctools_content_process',
      'file' => 'content.inc',
      'path' => drupal_get_path('module', 'ctools') . '/includes',
    ),
  );
}