1<?php
2// (c) Copyright 2002-2016 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
8// This is about improving wikiplugin_footnote, no relation to the "footnote" feature
9function prefs_footnote_list()
10{
11	return [
12		'footnote_popovers' => [
13			'name' => tra('Display footnote content in popover'),
14			'description' => tra('When the mouse is over the footnote reference, show footnote content in a popover window.'),
15			'type' => 'flag',
16			'default' => 'y',
17			'dependencies' => [
18				'wikiplugin_footnote',
19				'feature_jquery_ui'
20			],
21		],
22	];
23}
24