Mercurial > hg > rr-repo
comparison sites/all/modules/ctools/tests/plugins/not_cached/plugin_array.inc @ 0:ff03f76ab3fe
initial version
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Wed, 21 Aug 2013 18:51:11 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:ff03f76ab3fe |
---|---|
1 <?php | |
2 /** | |
3 * @file | |
4 * Chaos Tools plugin include using a plugin array to declare a plugin. | |
5 */ | |
6 | |
7 /** | |
8 * Plugin array plugin definition. | |
9 */ | |
10 $plugin = array( | |
11 'function' => 'ctools_plugin_test_plugin_array_not_cached_test', | |
12 'handler' => array( | |
13 'class' => 'ctoolsNotCachedPluginArray', | |
14 ), | |
15 ); | |
16 | |
17 /** | |
18 * Plugin array function plugin. | |
19 */ | |
20 function ctools_plugin_test_plugin_array_not_cached_test() {} |