Projet

Général

Profil

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

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

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_array2_cached_test',
12
  'handler' => array(
13
    'class' => 'ctoolsCachedPluginArray2',
14
  ),
15
);
16

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