You are here

function menu_token_ctools_plugin_type in Menu Token 7

Implements hook_ctools_plugin_type().

File

./menu_token.module, line 29
Main module file for the Menu Token module.

Code

function menu_token_ctools_plugin_type() {
  return array(
    'plugins' => array(
      'cache' => TRUE,
      'use hooks' => TRUE,
      'classes' => array(
        'handler',
      ),
    ),
  );
}