-
Notifications
You must be signed in to change notification settings - Fork 0
/
groups.php
79 lines (63 loc) · 1.52 KB
/
groups.php
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
/**
* groups
*
* @package Sngine
* @author Zamblek
*/
// fetch bootloader
require('bootloader.php');
// groups enabled
if(!$system['groups_enabled']) {
_error(404);
}
// user access
user_access();
try {
// get view content
switch ($_GET['view']) {
case '':
// page header
page_header(__("Discover Groups"));
// get new groups
$groups = $user->get_groups(array('suggested' => true));
/* assign variables */
$smarty->assign('groups', $groups);
$smarty->assign('get', "suggested_groups");
break;
case 'joined':
// page header
page_header(__("Joined Groups"));
// get joined groups
$groups = $user->get_groups( array('user_id' => $user->_data['user_id']) );
/* assign variables */
$smarty->assign('groups', $groups);
$smarty->assign('get', "joined_groups");
break;
case 'manage':
// page header
page_header(__("Your Groups"));
// get managed groups
$groups = $user->get_groups();
/* assign variables */
$smarty->assign('groups', $groups);
$smarty->assign('get', "groups");
break;
default:
_error(404);
break;
}
/* assign variables */
$smarty->assign('view', $_GET['view']);
// get custom fields
$smarty->assign('custom_fields', $user->get_custom_fields( array("for" => "group") ));
// get groups categories
$categories = $user->get_groups_categories();
/* assign variables */
$smarty->assign('categories', $categories);
} catch (Exception $e) {
_error(__("Error"), $e->getMessage());
}
// page footer
page_footer("groups");
?>