1<?php
2/**
3 * @package tikiwiki
4 */
5// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
6//
7// All Rights Reserved. See copyright.txt for details and a complete list of authors.
8// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
9// $Id$
10
11include('tiki-setup.php');
12$todolib = TikiLib::lib('todo');
13
14$access->check_feature('feature_trackers');	// TODO add more features as the lib does more
15
16$todos = $todolib->listTodoObject();
17foreach ($todos as $todo) {
18	$todolib->applyTodo($todo);
19}
20