function date_views_plugin_pager::summary_title in Date 8
Same name and namespace in other branches
- 7.3 date_views/includes/date_views_plugin_pager.inc \date_views_plugin_pager::summary_title()
- 7.2 date_views/includes/date_views_plugin_pager.inc \date_views_plugin_pager::summary_title()
File
- date_views/
includes/ date_views_plugin_pager.inc, line 68 - Date pager. Works with a Date argument, the argument filters the view and the pager provides back/next navigation.
Class
- date_views_plugin_pager
- Example plugin to handle paging by month.
Code
function summary_title() {
return t("Position: @position, format: @format.", array(
'@position' => $this->options['pager_position'],
'@format' => $this->options['link_format'],
));
}