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
|
<?php
/**
* Elgg friend request plugin.
*
* @package ElggFriendRequest
*/
elgg_register_event_handler('init', 'system', 'friendrequest_init');
function friendrequest_init() {
//This will let users view their friend requests
elgg_register_page_handler('friendrequests', 'friendrequest_page_handler');
if (elgg_is_logged_in()) {
$params = array(
'name' => 'friendrequests',
'text' => elgg_echo('friendrequest'),
'href' => "friendrequests",
'contexts' => array('friends'),
);
elgg_register_menu_item('page', $params);
}
$actions_dir = elgg_get_plugins_path().'friendrequest/actions/friendrequest';
elgg_register_action('friendrequest/approve', "$actions_dir/approve.php");
elgg_register_action('friendrequest/decline', "$actions_dir/decline.php");
//We need to override the friend remove action to remove the relationship we created
elgg_register_action('friends/remove', "$actions_dir/removefriend.php");
//Regular Elgg engine sends out an email via an event. The 400 priority will let us run first.
//Then we return false to stop the event chain. The normal event handler will never get to run.
//elgg_register_event_handler('create', 'friend', 'friendrequest_event_create_friend', 400);
//Handle our add action event:
//elgg_register_event_handler('create', 'friendrequest', 'friendrequest_event_create_friendrequest');
}
function friendrequest_page_handler($page){
//Keep the URLs uniform:
if (isset($page[0])) {
forward("friendrequests");
}
elgg_push_context('friends');
$params = array(
'title' => elgg_echo('friendrequest'),
'filter' => '',
);
$body = elgg_view_layout('content', $params);
echo elgg_view_page($params['title'], $body);
return true;
}
function friendrequest_event_create_friend(){
}
function friendrequest_event_create_friendrequest(){
}
|