aboutsummaryrefslogtreecommitdiffstats
path: root/include/features.php
blob: 2bb874095b4f8d9f6be4df6a5f7d8cb66e069a1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php

/*
 * Features management
 */


function feature_enabled($uid,$feature) {
	$x = get_pconfig($uid,'feature',$feature);
	$arr = array('uid' => $uid, 'feature' => $feature, 'enabled' => $x);
	call_hooks('feature_enabled',$arr);
	return($arr['enabled']);
}

function get_features() {

$arr = array(

'multi_delete' => t('Multiple Deletion'),
'expire'       => t('Content Expiration'),
'commtag'      => t('Community Tagging'),
'categories'   => t('Post Categories'),
'filing'       => t('Saved Folders'),
'archives'     => t('Archives'),



);

	call_hooks('get_features',$arr);
	return $arr;
}