3 * Define some plugin systems to test ctools plugin includes.
7 * Implementation of hook_ctools_plugin_dierctory()
9 function ctools_plugin_test_ctools_plugin_directory($module, $plugin) {
10 if ($module == 'ctools_plugin_test') {
11 return 'plugins/' .
$plugin;
15 function ctools_plugin_test_ctools_plugin_type() {
17 'extra_defaults' => array(
21 'array' => array('some value'),
30 'not_cached' => array(
36 'big_hook_cached' => array(
43 'big_hook_not_cached' => array(
53 function ctools_plugin_test_ctools_plugin_test_big_hook_cached() {
56 'function' => 'ctools_plugin_test_hook_cached_test',
57 'handler' => 'class1',
62 function ctools_plugin_test_ctools_plugin_test_big_hook_not_cached() {
65 'function' => 'ctools_plugin_test_hook_not_cached_test',
71 function ctools_plugin_test_hook_cached_test() {}
72 function ctools_plugin_test_hook_not_cached_test() {}