views_load_more.views.inc in Views Load More 7
Same filename and directory in other branches
Provides the views plugin information.
File
views_load_more.views.incView source
<?php
/**
* @file
*
* Provides the views plugin information.
*/
/**
* Implements hook_views_plugins().
*/
function views_load_more_views_plugins() {
return array(
'module' => 'views_load_more',
'pager' => array(
'load_more' => array(
'title' => t('Load More Pager'),
'help' => t('views_load_more'),
'help topic' => '',
'handler' => 'views_plugin_pager_load_more',
'uses options' => TRUE,
'parent' => 'full',
),
),
);
}
Functions
Name | Description |
---|---|
views_load_more_views_plugins | Implements hook_views_plugins(). |