function views_lazy_load_views_plugins in Views Lazy Load 7
Same name and namespace in other branches
- 8 includes/views/views_lazy_load.views.inc \views_lazy_load_views_plugins()
Implements hook_views_plugins().
File
- includes/
views/ views_lazy_load.views.inc, line 11 - Views inc file.
Code
function views_lazy_load_views_plugins() {
return array(
'module' => 'views_lazy_load',
'display_extender' => array(
'views_lazy_load' => array(
'title' => t('Views Lazy Load'),
'help' => t('Lazy loads the view via AJAX'),
'path' => drupal_get_path('module', 'views_lazy_load') . '/includes/views',
'handler' => 'views_lazy_load_plugin_display_extender',
),
),
);
}