1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8function prefs_pagination_list()
9{
10	return [
11		'pagination_firstlast' => [
12			'name' => tra("Display 'First' and 'Last' links"),
13			'description' => tra('if set, will display \'first\' and \'last\' links on pages'),
14			'type' => 'flag',
15			'default' => 'y',
16		],
17		'pagination_fastmove_links' => [
18			'name' => tra('Display "fast-forward" links'),
19			'description' => tra('Display "fast-forward" links (to advance 10 percent of the total number of pages) '),
20			'type' => 'flag',
21			'default' => 'y',
22		],
23		'pagination_hide_if_one_page' => [
24			'name' => tra('Hide pagination when there is only one page'),
25			'description' => tra('Don\'t display pagination on single pages.'),
26			'type' => 'flag',
27			'default' => 'y',
28		],
29		'pagination_icons' => [
30			'name' => tra('Use Icons'),
31			'type' => 'flag',
32			'default' => 'y',
33		],
34	];
35}
36