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_keep_list()
9{
10	return [
11		'keep_versions' => [
12			'name' => tra('Keep versions for'),
13			'description' => tra('Do not delete versions younger than this number of days.'),
14			'type' => 'text',
15			'size' => '5',
16			'units' => tra('days'),
17			'default' => 1,
18		],
19	];
20}
21