Skip to content
content.plugin-type.inc 383 B
Newer Older
<?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' => 'export-ui.inc',
      'path' => drupal_get_path('module', 'ctools') . '/includes',
    ),
  );
}