public function PagererViewsPagerPlugin::option_definition in Pagerer 7
Return plugin options.
Same as parent, plus preset. Tags are left even if the options form will not present them, as tags in Pagerer are different than in core.
Overrides views_plugin_pager_full::option_definition
File
- plugins/
pagerer.views.pager.inc, line 54 - Pagerer - Definition of the Views pager plugin.
Class
- PagererViewsPagerPlugin
- Pagerer pager plugin handler class.
Code
public function option_definition() {
$options = parent::option_definition();
$options['preset'] = array(
'default' => 'core',
);
return $options;
}