class views_plugin_pager_none in Views (for Drupal 7) 7.3
Same name and namespace in other branches
- 6.3 plugins/views_plugin_pager_none.inc \views_plugin_pager_none
Plugin for views without pagers.
Hierarchy
- class \views_object
- class \views_plugin
- class \views_plugin_pager
- class \views_plugin_pager_none
- class \views_plugin_pager
- class \views_plugin
Expanded class hierarchy of views_plugin_pager_none
Related topics
1 string reference to 'views_plugin_pager_none'
- views_views_plugins in includes/
plugins.inc - Implements hook_views_plugins().
File
- plugins/
views_plugin_pager_none.inc, line 13 - Definition of views_plugin_pager_none.
View source
class views_plugin_pager_none extends views_plugin_pager {
/**
* {@inheritdoc}
*/
public function init(&$view, &$display, $options = array()) {
parent::init($view, $display, $options);
// If the pager is set to none, then it should show all items.
$this
->set_items_per_page(0);
}
/**
* {@inheritdoc}
*/
public function summary_title() {
if (!empty($this->options['offset'])) {
return t('All items, skip @skip', array(
'@skip' => $this->options['offset'],
));
}
return t('All items');
}
/**
* {@inheritdoc}
*/
public function option_definition() {
$options = parent::option_definition();
$options['offset'] = array(
'default' => 0,
);
return $options;
}
/**
* Provide the default form for setting options.
*/
public function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$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'],
);
}
/**
* {@inheritdoc}
*/
public function use_pager() {
return FALSE;
}
/**
* {@inheritdoc}
*/
public function use_count_query() {
return FALSE;
}
/**
* {@inheritdoc}
*/
public function get_items_per_page() {
return 0;
}
/**
* {@inheritdoc}
*/
public function execute_count_query(&$count_query) {
// If we are displaying all items, never count. But we can update the count
// in post_execute.
}
/**
* {@inheritdoc}
*/
public function post_execute(&$result) {
$this->total_items = count($result);
}
/**
* {@inheritdoc}
*/
public function query() {
// The only query modifications we might do are offsets.
if (!empty($this->options['offset'])) {
$this->view->query
->set_offset($this->options['offset']);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
views_object:: |
public | property | Handler's definition. | |
views_object:: |
public | property | Except for displays, options for the object will be held here. | 1 |
views_object:: |
function | Collect this handler's option definition and alter them, ready for use. | ||
views_object:: |
public | function | Views handlers use a special construct function. | 4 |
views_object:: |
public | function | Destructor. | 2 |
views_object:: |
public | function | 1 | |
views_object:: |
public | function | ||
views_object:: |
public | function | Always exports the option, regardless of the default value. | |
views_object:: |
public | function | Set default options on this object. | 1 |
views_object:: |
public | function | Set default options. | |
views_object:: |
public | function | Let the handler know what its full definition is. | |
views_object:: |
public | function | Unpack options over our existing defaults, drilling down into arrays so that defaults don't get totally blown away. | |
views_object:: |
public | function | Unpack a single option definition. | |
views_object:: |
public | function | Unpacks each handler to store translatable texts. | |
views_object:: |
public | function | ||
views_plugin:: |
public | property | The current used views display. | |
views_plugin:: |
public | property | The plugin name of this plugin, for example table or full. | |
views_plugin:: |
public | property | The plugin type of this plugin, for example style or query. | |
views_plugin:: |
public | property |
The top object of a view. Overrides views_object:: |
1 |
views_plugin:: |
public | function | Provide a list of additional theme functions for the theme info page. | |
views_plugin:: |
public | function | Return the human readable name of the display. | |
views_plugin:: |
public | function | Provide a full list of possible theme templates used by this style. | |
views_plugin:: |
public | function | Validate that the plugin is correct and can be saved. | 3 |
views_plugin_pager:: |
public | property | ||
views_plugin_pager:: |
public | property | ||
views_plugin_pager:: |
public | function | 1 | |
views_plugin_pager:: |
public | function | ||
views_plugin_pager:: |
public | function | 1 | |
views_plugin_pager:: |
public | function | Get the current page. | |
views_plugin_pager:: |
public | function | Get the page offset, or how many items to skip. | |
views_plugin_pager:: |
public | function | Get the pager id, if it exists. | |
views_plugin_pager:: |
public | function | Get the total number of items. | |
views_plugin_pager:: |
public | function | Determine if there are more records available. | |
views_plugin_pager:: |
public | function | 1 | |
views_plugin_pager:: |
public | function | 1 | |
views_plugin_pager:: |
public | function |
Provide the default form form for submitting options. Overrides views_plugin:: |
|
views_plugin_pager:: |
public | function |
Provide the default form form for validating options. Overrides views_plugin:: |
1 |
views_plugin_pager:: |
public | function | Perform any needed actions just prior to the query executing. | |
views_plugin_pager:: |
public | function | Perform any needed actions just before rendering. | |
views_plugin_pager:: |
public | function | Render the pager. | 1 |
views_plugin_pager:: |
public | function | Set the current page. | 1 |
views_plugin_pager:: |
public | function | Set how many items per page this pager will display. | |
views_plugin_pager:: |
public | function | Set the page offset, or how many items to skip. | |
views_plugin_pager:: |
public | 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:: |
public | function | 1 | |
views_plugin_pager_none:: |
public | function |
Execute the count query, which will be done just prior to the query
itself being executed. Overrides views_plugin_pager:: |
|
views_plugin_pager_none:: |
public | function |
Get how many items per page this pager will display. Overrides views_plugin_pager:: |
|
views_plugin_pager_none:: |
public | function |
Initialize the plugin. Overrides views_plugin_pager:: |
|
views_plugin_pager_none:: |
public | function |
Provide the default form for setting options. Overrides views_plugin:: |
|
views_plugin_pager_none:: |
public | function |
Information about options for all kinds of purposes will be held here. Overrides views_object:: |
|
views_plugin_pager_none:: |
public | function |
Perform any needed actions just after the query executing. Overrides views_plugin_pager:: |
|
views_plugin_pager_none:: |
public | function |
Modify the query for paging Overrides views_plugin_pager:: |
|
views_plugin_pager_none:: |
public | function |
Return a string to display as the clickable title for the
pager plugin. Overrides views_plugin_pager:: |
|
views_plugin_pager_none:: |
public | function |
Determine if a pager needs a count query. Overrides views_plugin_pager:: |
|
views_plugin_pager_none:: |
public | function |
Determine if this pager actually uses a pager. Overrides views_plugin_pager:: |