blob: 538277a0c624d7f08ab20ace19dbfde65d45fcec (
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
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
function group_init(&$a) {
require_once('include/group.php');
$a->page['aside'] .= group_side();
}
function group_post(&$a) {
if(! local_user()) {
notice("Access denied." . EOL);
return;
}
if(($a->argc == 2) && ($a->argv[1] == 'new')) {
$name = notags(trim($_POST['groupname']));
$r = group_add($_SESSION['uid'],$name);
if($r) {
notice("Group created." . EOL );
$r = group_byname($_SESSION['uid'],$name);
if($r)
goaway($a->get_baseurl() . '/group/' . $r);
}
else
notice("Could not create group." . EOL );
// goaway($a->get_baseurl() . '/group');
return; // NOTREACHED
}
}
function group_content(&$a) {
if(! local_user()) {
notice("Access denied." . EOL);
return;
}
if(($a->argc == 2) && ($a->argv[1] == 'new')) {
$tpl = file_get_contents('view/group_new.tpl');
$o .= replace_macros($tpl,array(
));
}
dbg(2);
if(($a->argc == 2) && (intval($a->argv[1]))) {
require_once('view/acl_selectors.php');
$r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($a->argv[1]),
intval($_SESSION['uid'])
);
if(! count($r)) {
notice("Group not found." . EOL );
goaway($a->get_baseurl() . '/contacts');
}
$ret = group_get_members($r[0]['id']);
$preselected = array();
if(count($ret)) {
foreach($ret as $p)
$preselected[] = $p['id'];
}
$sel = contact_select('group_members_select','group_members_select',$preselected);
$o .= $sel;
}
return $o;
}
|