class views_plugin_pager_some in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 7.3 plugins/views_plugin_pager_some.inc \views_plugin_pager_some
Plugin for views without pagers.
Hierarchy
- class \views_object
- class \views_plugin
- class \views_plugin_pager
- class \views_plugin_pager_some
- class \views_plugin_pager
- class \views_plugin
Expanded class hierarchy of views_plugin_pager_some
1 string reference to 'views_plugin_pager_some'
- views_views_plugins in includes/
plugins.inc - Implementation of hook_views_plugins
File
- plugins/
views_plugin_pager_some.inc, line 8
View source
class views_plugin_pager_some extends views_plugin_pager {
function summary_title() {
if (!empty($this->options['offset'])) {
return format_plural($this->options['items_per_page'], '@count item, skip @skip', '@count items, skip @skip', array(
'@count' => $this->options['items_per_page'],
'@skip' => $this->options['offset'],
));
}
return format_plural($this->options['items_per_page'], '@count item', '@count items', array(
'@count' => $this->options['items_per_page'],
));
}
function option_definition() {
$options = parent::option_definition();
$options['items_per_page'] = array(
'default' => 10,
);
$options['offset'] = array(
'default' => 0,
);
return $options;
}
/**
* Provide the default form for setting options.
*/
function options_form(&$form, &$form_state) {
$form['items_per_page'] = array(
'#title' => t('Items to display'),
'#type' => 'textfield',
'#description' => t('The number of items to display per page.'),
'#default_value' => $this->options['items_per_page'],
);
$form['offset'] = array(
'#type' => 'textfield',
'#title' => t('Offset'),
'#description' => t('The number of items to skip. For example, if this field is 3, the first 3 items will be skipped and not displayed.'),
'#default_value' => $this->options['offset'],
);
}
function use_pager() {
return FALSE;
}
function use_count_query() {
return FALSE;
}
function query() {
$this->view->query
->set_limit($this->options['items_per_page']);
$this->view->query
->set_offset($this->options['offset']);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
views_object:: |
property | Handler's definition | ||
views_object:: |
property | Except for displays, options for the object will be held here. | 1 | |
views_object:: |
function | Views handlers use a special construct function so that we can more easily construct them with variable arguments. | 6 | |
views_object:: |
function | 2 | ||
views_object:: |
function | 1 | ||
views_object:: |
function | |||
views_object:: |
function | Set default options on this object. Called by the constructor in a complex chain to deal with backward compatibility. | 1 | |
views_object:: |
function | Set default options. For backward compatibility, it sends the options array; this is a feature that will likely disappear at some point. | ||
views_object:: |
function | Let the handler know what its full definition is. | ||
views_object:: |
function | Unpack options over our existing defaults, drilling down into arrays so that defaults don't get totally blown away. | ||
views_object:: |
function | Unpack a single option definition. | ||
views_object:: |
function | Unpacks each handler to store translatable texts. | ||
views_object:: |
function | |||
views_plugin:: |
property | The current used views display. | ||
views_plugin:: |
property | The plugin type of this plugin, for example style or query. | ||
views_plugin:: |
property |
The top object of a view. Overrides views_object:: |
1 | |
views_plugin:: |
function | Provide a list of additional theme functions for the theme information page | ||
views_plugin:: |
function | Provide a full list of possible theme templates used by this style. | ||
views_plugin:: |
function | Validate that the plugin is correct and can be saved. | 2 | |
views_plugin_pager:: |
property | |||
views_plugin_pager:: |
property | |||
views_plugin_pager:: |
function | Execute the count query, which will be done just prior to the query itself being executed. | 1 | |
views_plugin_pager:: |
function | 1 | ||
views_plugin_pager:: |
function | |||
views_plugin_pager:: |
function | 1 | ||
views_plugin_pager:: |
function | Get the current page. | ||
views_plugin_pager:: |
function | Get how many items per page this pager will display. | 1 | |
views_plugin_pager:: |
function | Get the page offset, or how many items to skip. | ||
views_plugin_pager:: |
function | Get the pager id, if it exists | ||
views_plugin_pager:: |
function | Get the total number of items. | ||
views_plugin_pager:: |
function | Determine if there are more records available. | ||
views_plugin_pager:: |
function | Initialize the plugin. | 1 | |
views_plugin_pager:: |
function | 1 | ||
views_plugin_pager:: |
function | 1 | ||
views_plugin_pager:: |
function |
Provide the default form form for submitting options Overrides views_plugin:: |
||
views_plugin_pager:: |
function |
Provide the default form form for validating options Overrides views_plugin:: |
1 | |
views_plugin_pager:: |
function | Perform any needed actions just after the query executing. | 1 | |
views_plugin_pager:: |
function | Perform any needed actions just prior to the query executing. | ||
views_plugin_pager:: |
function | Perform any needed actions just before rendering. | ||
views_plugin_pager:: |
function | Render the pager. | 1 | |
views_plugin_pager:: |
function | Set the current page. | 1 | |
views_plugin_pager:: |
function | Set how many items per page this pager will display. | ||
views_plugin_pager:: |
function | Set the page offset, or how many items to skip. | ||
views_plugin_pager:: |
function | If there are pagers that need global values set, this method can be used to set them. It will be called when the count query is run. | 1 | |
views_plugin_pager:: |
function | 1 | ||
views_plugin_pager_some:: |
function |
Provide the default form for setting options. Overrides views_plugin:: |
||
views_plugin_pager_some:: |
function |
Information about options for all kinds of purposes will be held here. Overrides views_object:: |
||
views_plugin_pager_some:: |
function |
Modify the query for paging Overrides views_plugin_pager:: |
||
views_plugin_pager_some:: |
function |
Return a string to display as the clickable title for the
pager plugin. Overrides views_plugin_pager:: |
||
views_plugin_pager_some:: |
function |
Determine if a pager needs a count query. Overrides views_plugin_pager:: |
||
views_plugin_pager_some:: |
function |
Determine if this pager actually uses a pager. Overrides views_plugin_pager:: |