summaryrefslogtreecommitdiff
path: root/sites/all/modules/ctools/tests/plugins/not_cached/plugin_array2.inc
blob: 06b8175710206af88f0173dec96c1358f7bdf823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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_array2_not_cached_test',
  'handler' => array(
    'class' => 'ctoolsNotCachedPluginArray2',
  ),
);

/**
 * Plugin array function plugin.
 */
function ctools_plugin_test_plugin_array2_not_cached_test() {}