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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
<?php
/**
* Elgg groups plugin
*
* @package ElggGroups
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Marcus Povey
* @copyright Curverider Ltd 2008
* @link http://elgg.com/
*/
/**
* Initialise the groups plugin.
* Register actions, set up menus
*/
function groups_init()
{
global $CONFIG;
// Set up the menu for logged in users
if (isloggedin())
{
add_menu(elgg_echo('groups'), $CONFIG->wwwroot . "pg/groups/" . $_SESSION['user']->username,array(
menu_item(elgg_echo('groups:new'), $CONFIG->wwwroot."pg/groups/" . $_SESSION['user']->username . "/new/"),
menu_item(elgg_echo('groups:yours'), $CONFIG->wwwroot . "pg/groups/" . $_SESSION['user']->username),
menu_item(elgg_echo('groups:all'), $CONFIG->wwwroot . "pg/groups/" . $_SESSION['user']->username . "/world/"),
),'groups');
}
else
{
add_menu(elgg_echo('groups'), $CONFIG->wwwroot . "mod/groups/",array(
menu_item(elgg_echo('groups:all'),$CONFIG->wwwroot."mod/groups/all.php"),
));
}
// Register a page handler, so we can have nice URLs
register_page_handler('groups','groups_page_handler');
// Register a URL handler for groups
register_entity_url_handler('groups_url','group','all');
// Register an icon handler for groups
register_page_handler('icon','groups_icon_handler');
// Register some actions
register_action("groups/edit",false, $CONFIG->pluginspath . "groups/actions/edit.php");
register_action("groups/join",false, $CONFIG->pluginspath . "groups/actions/join.php");
register_action("groups/leave",false, $CONFIG->pluginspath . "groups/actions/leave.php");
register_action("groups/joinrequest",false, $CONFIG->pluginspath . "groups/actions/joinrequest.php");
register_action("groups/addtogroup",false, $CONFIG->pluginspath . "groups/actions/addtogroup.php");
// For now, we'll hard code the groups profile items as follows:
// TODO make this user configurable
// Language short codes must be of the form "groups:key"
// where key is the array key below
$CONFIG->group = array(
'title' => 'text',
'description' => 'longtext',
//'location' => 'tags',
'interests' => 'tags',
//'skills' => 'tags',
//'contactemail' => 'email',
//'phone' => 'text',
//'mobile' => 'text',
'website' => 'url',
);
}
/**
* Group page handler
*
* @param array $page Array of page elements, forwarded by the page handling mechanism
*/
function groups_page_handler($page)
{
global $CONFIG;
// The username should be the file we're getting
if (isset($page[0])) {
set_input('username',$page[0]);
}
if (isset($page[1]))
{
switch($page[1])
{
case "new":
include($CONFIG->pluginspath . "groups/new.php");
break;
case "world":
include($CONFIG->pluginspath . "groups/all.php");
break;
}
}
else
{
// Include the standard profile index
include($CONFIG->pluginspath . "groups/index.php");
}
}
/**
* Populates the ->getUrl() method for group objects
*
* @param ElggEntity $entity File entity
* @return string File URL
*/
function groups_url($entity) {
global $CONFIG;
return $CONFIG->url . "pg/view/" . $entity->getGUID() . "/";
}
// Make sure the groups initialisation function is called on initialisation
register_elgg_event_handler('init','system','groups_init');
?>
|