Projet

Général

Profil

Paste
Télécharger (396 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / ctools / tests / plugins / cached / plugin_array2.inc @ c304a780

1
<?php
2

    
3
/**
4
 * @file
5
 * Chaos Tools plugin include using a plugin array to declare a plugin.
6
 */
7

    
8
/**
9
 * Plugin array plugin definition.
10
 */
11
$plugin = array(
12
  'function' => 'ctools_plugin_test_plugin_array2_cached_test',
13
  'handler' => array(
14
    'class' => 'ctoolsCachedPluginArray2',
15
  ),
16
);
17

    
18
/**
19
 * Plugin array function plugin.
20
 */
21
function ctools_plugin_test_plugin_array2_cached_test() {
22
}