You are here

views_lazy_load.views.inc in Views Lazy Load 7

Same filename and directory in other branches
  1. 8 includes/views/views_lazy_load.views.inc

Views inc file.

File

includes/views/views_lazy_load.views.inc
View source
<?php

/**
 * @file
 * Views inc file.
 */

/**
 * Implements hook_views_plugins().
 */
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',
      ),
    ),
  );
}

Functions