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_social_list()
9{
10	return [
11		'social_network_type' => [
12			'name' => tra('Social network type'),
13			'description' => tra('Select how the friendship relations within the social network should be treated.'),
14			'type' => 'list',
15			'options' => [
16				'follow' => tr('Follow (as in Twitter)'),
17				'friend' => tr('Friend (as in Facebook)'),
18				'follow_approval' => tr('Followers need approval'),
19			],
20			'default' => 'follow',
21		],
22	];
23}
24