5d943c6e370b7352784baa8c01e8ee7768329323
[atutor.git] / mods / scorm_packages / settings.php
1 <?php
2 /*
3  * mods/scorm_packages/settings.php
4  *
5  * This file is part of ATutor, see http://www.atutor.ca
6  * 
7  * Copyright (C) 2005  Matthai Kurian 
8  * 
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  * 
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22  */
23
24 define('AT_INCLUDE_PATH', '../../include/');
25 require(AT_INCLUDE_PATH.'vitals.inc.php');
26
27 $ptypes = explode (',', AT_PACKAGE_TYPES);
28 $plug = Array();
29 foreach ($ptypes as $type) {
30         include ('./' . $type . '/lib.inc.php');
31 }
32
33 $sql = "SELECT  package_id,
34                 ptype
35         FROM    ".TABLE_PREFIX."packages
36         WHERE   course_id = $_SESSION[course_id]
37         ORDER   BY package_id
38         ";
39
40 $result = mysql_query($sql, $db);
41 $p = '<div style="display:block; border:thin solid #cccccc;width:95%;padding:1em;margin:auto;">';       
42 $p  .= '<p><ol>';
43 $num = 0;
44 while ($row = mysql_fetch_assoc($result)) {
45         foreach ($plug[$row['ptype']]->getSettingsLinks($row['package_id']) as $l) {
46                 $p .= '<li>' . $l . '</li>';
47                 $num++;
48         }
49 }
50 if ($num == 0) {
51         require(AT_INCLUDE_PATH.'header.inc.php');
52         $msg->addInfo (NO_PACKAGES);
53         $msg->printAll();
54         require (AT_INCLUDE_PATH.'footer.inc.php');
55         exit;
56
57
58 $p .= '</ol>';
59 $p .= '</p>';
60 $p .= '</div>';
61
62 require(AT_INCLUDE_PATH.'header.inc.php');
63 echo $p;
64 require (AT_INCLUDE_PATH.'footer.inc.php');
65 ?>