You are here

function views_accelerator_views_plugins in Views Accelerator 7

Implements hook_views_plugins().

File

views/views_accelerator.views.inc, line 12
views_accelerator.views.inc

Code

function views_accelerator_views_plugins() {
  $plugins = array(
    'cache' => array(
      'none-accelerated' => array(
        'title' => t('None. Post-execution optimized by Views Accelerator. Performance stats if requested.'),
        'help' => t('Accelerates post-execution of Views field functions.'),
        'handler' => 'views_plugin_cache_none_accelerated',
        'uses options' => FALSE,
        'help topic' => 'views accelerator',
      ),
      'none-debug' => array(
        'title' => t('None. Displays performance stats, if requested on the configuration page.'),
        'help' => t('Does not accelerate, but shows Views performance statistics for before/afater comparisons.'),
        'handler' => 'views_plugin_cache_none_debug',
        'uses options' => FALSE,
        'help topic' => 'views accelerator',
      ),
    ),
  );
  return $plugins;
}