summaryrefslogtreecommitdiff
path: root/sites/all/modules/ctools/tests/plugins/not_cached/plugin_array.inc
diff options
context:
space:
mode:
Diffstat (limited to 'sites/all/modules/ctools/tests/plugins/not_cached/plugin_array.inc')
-rw-r--r--sites/all/modules/ctools/tests/plugins/not_cached/plugin_array.inc20
1 files changed, 20 insertions, 0 deletions
diff --git a/sites/all/modules/ctools/tests/plugins/not_cached/plugin_array.inc b/sites/all/modules/ctools/tests/plugins/not_cached/plugin_array.inc
new file mode 100644
index 000000000..3f4539359
--- /dev/null
+++ b/sites/all/modules/ctools/tests/plugins/not_cached/plugin_array.inc
@@ -0,0 +1,20 @@
+<?php
+/**
+ * @file
+ * Chaos Tools plugin include using a plugin array to declare a plugin.
+ */
+
+/**
+ * Plugin array plugin definition.
+ */
+$plugin = array(
+ 'function' => 'ctools_plugin_test_plugin_array_not_cached_test',
+ 'handler' => array(
+ 'class' => 'ctoolsNotCachedPluginArray',
+ ),
+);
+
+/**
+ * Plugin array function plugin.
+ */
+function ctools_plugin_test_plugin_array_not_cached_test() {}