You are here

function authcache_views_views_plugins in Authenticated User Page Caching (Authcache) 7.2

Implements hook_views_plugins().

File

modules/authcache_views/authcache_views.module, line 80
Authcache support for views module.

Code

function authcache_views_views_plugins() {
  $plugins['display_extender']['authcache_views'] = array(
    'title' => t('Authcache'),
    'help' => t('Use ESI or Ajax to display views with personalized content on cached pages'),
    'handler' => 'authcache_views_plugin_display_extender',
  );
  return $plugins;
}