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_dailyreports_list()
9{
10	return [
11		'dailyreports_enabled_for_new_users' => [
12			'name' => tr('Enable daily reports for new users'),
13			'description' => tra('Determines if daily reports will be automatically enabled for new users.'),
14			'type' => 'flag',
15			'default' => 'n',
16			'help' => 'Daily+Reports',
17			'tags' => ['basic','tiki reporting feature'],
18		],
19	];
20}
21