content.plugin-type.inc
Contains plugin type registration information for the content tool.
File
-
includes/
content.plugin-type.inc
View 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
Title | Deprecated | Summary |
---|---|---|
ctools_content_plugin_type | @file Contains plugin type registration information for the content tool. |