content.plugin-type.inc in Chaos Tool Suite (ctools) 7
Contains plugin type registration information for the content tool.
File
includes/content.plugin-type.incView source
<?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',
),
);
}
Functions
Name | Description |
---|---|
ctools_content_plugin_type | @file Contains plugin type registration information for the content tool. |