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_footer_list()
9{
10	return [
11		'footer_shadow_start' => [
12			'name' => tra('Footer shadow div start'),
13			'type' => 'textarea',
14			'size' => '2',
15			'default' => '',
16		],
17		'footer_shadow_end' => [
18			'name' => tra('Footer shadow div end'),
19			'type' => 'textarea',
20			'size' => '2',
21			'default' => '',
22		],
23	];
24}
25