function ctools_content_plugin_type

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

File

includes/content.plugin-type.inc, line 8

Code

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',
        ),
    );
}