Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
6 / 6 |
|
| ctools_content_plugin_type | |
100.00% |
1 / 1 |
0 | |
100.00% |
6 / 6 |
|||
| <?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', | |
| ), | |
| ); | |
| } |