You are here

views_show_more.views.inc in Views Show More 7

Same filename and directory in other branches
  1. 7.2 views_show_more.views.inc

Views Pager plugin definition.

File

views_show_more.views.inc
View source
<?php

/**
 * @file
 * Views Pager plugin definition.
 */

/**
 * Implements hook_views_plugins().
 */
function views_show_more_views_plugins() {
  $plugins = array(
    'pager' => array(
      'show_more' => array(
        'title' => t('Show more pager'),
        'help' => t('Ajax based show more pager.'),
        'handler' => 'ViewsShowMorePlugin',
        'help topic' => 'pager-show-more',
        'uses options' => TRUE,
        'parent' => 'full',
      ),
    ),
  );
  return $plugins;
}

Functions