content.plugin-type.inc 382 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @file
  4. * Contains plugin type registration information for the content tool.
  5. */
  6. function ctools_content_plugin_type(&$items) {
  7. $items['content_types'] = array(
  8. 'cache' => FALSE,
  9. 'process' => array(
  10. 'function' => 'ctools_content_process',
  11. 'file' => 'content.inc',
  12. 'path' => drupal_get_path('module', 'ctools') . '/includes',
  13. ),
  14. );
  15. }