blob: f658d5abfc71148a8fbfc633160302aa1ceba202 (
plain)
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
|
<?php
/**
* Elgg GUID Tool
*
* @package ElggGUIDTool
* @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 tool and set menus.
*/
function guidtool_init()
{
global $CONFIG;
if (isloggedin())
{
add_menu(elgg_echo('guidtool'), $CONFIG->wwwroot . "pg/guidtool/",array(
menu_item(elgg_echo('guidtool:browse'), $CONFIG->wwwroot."pg/guidtool/"),
menu_item(elgg_echo('guidtool:import'), $CONFIG->wwwroot."pg/guidtool/import/"),
),'guidtool');
}
// Register a page handler, so we can have nice URLs
register_page_handler('guidtool','guidtool_page_handler');
}
/**
* Log browser page handler
*
* @param array $page Array of page elements, forwarded by the page handling mechanism
*/
function guidtool_page_handler($page)
{
global $CONFIG;
if (isset($page[0]))
{
switch ($page[0])
{
case 'import' :
include($CONFIG->pluginspath . "guidtool/import.php");
break;
default:
include($CONFIG->pluginspath . "guidtool/index.php");
}
}
else
include($CONFIG->pluginspath . "guidtool/index.php");
}
// Initialise log
register_elgg_event_handler('init','system','guidtool_init');
?>
|