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
|
<?php
/**
* Simple tasklist plugin
*
* These parameters are required for the event API, but we won't use them:
*
* @param unknown_type $event
* @param unknown_type $object_type
* @param unknown_type $object
*/
function tasklist_init($event, $object_type, $object = null) {
global $CONFIG;
add_menu("Tasklist",$CONFIG->wwwroot . "mod/tasklist/",array(
menu_item("The tasklist plugin",$CONFIG->wwwroot."mod/tasklist/"),
));
}
/**
* The entity.
*
* @param ElggObject $entity
*/
function tasklist_draw_task($entity)
{
// Get the status
$status = $entity->getMetaData("status");
// Task
$task = $entity->getMetaData("task");
// Render the item
return elgg_view("tasklist/item", array(
"owner_id" => $entity->owner_guid,
"task" => $task,
"status" => $status,
"guid" => $entity->guid
));
}
function tasklist_drawtasks($ownerid, $offset = 0, $limit = 10)
{
// Get all entities of task
//$entities = get_entities("object","task",$ownerid, "time_created desc", $limit, $offset);
$entities = get_entities_from_metadata("status", "notdone", "object", "task", $limit, $offset);
if (($entities) && (is_array($entities)))
{
$display = "<table>";
foreach($entities as $e)
$display .= tasklist_draw_task($e);
$display .= "</table>";
return $display;
}
return "No tasks present for user.";
}
function tasklist_draw_newtask_form($ownerid)
{
return elgg_view("tasklist/newtask", array(
"owner_id" => $ownerid
));
}
// Make sure test_init is called on initialisation
register_event_handler('init','system','tasklist_init');
?>
|