3615a12cc2db4840baa4da842f2745c902312fda
[atutor.git] / mods / scorm_packages / lib.inc.php
1 <?php
2 /*
3  * mods/scorm_packages/lib.inc.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 $ptypes = explode (',', AT_PACKAGE_TYPES);
24 $plug = Array();
25 foreach ($ptypes as $type) {
26         require ($type . '/lib.inc.php');
27 }
28
29 $sql_get_pkgs = "SELECT  package_id,
30                 ptype
31         FROM  ".TABLE_PREFIX."packages
32         WHERE   course_id = $_SESSION[course_id]
33         ORDER   BY package_id
34 ";
35
36 function getPackagesLearnerLinkList () {
37         global $db;
38         global $plug;
39         global $sql_get_pkgs;
40
41         $rv = Array();
42
43         $result = mysql_query($sql_get_pkgs, $db);
44
45         while ($row = mysql_fetch_assoc($result)) {
46                 foreach ($plug[$row['ptype']]->getLearnerItemLinks(
47                         $row['package_id']) as $l) {
48                         array_push ($rv, $l);
49                 }
50         }
51         return $rv;
52 }
53
54 function getPackagesManagerLinkList () {
55         global $db;
56         global $plug;
57         global $sql_get_pkgs;
58
59         $rv = Array();
60
61         $result = mysql_query($sql_get_pkgs, $db);
62
63         while ($row = mysql_fetch_assoc($result)) {
64                 foreach ($plug[$row['ptype']]->getManagerItemLinks(
65                         $row['package_id']) as $l) {
66                         array_push ($rv, $l);
67                 }
68         }
69         return $rv;
70 }
71
72 function getScript () {
73         return "
74 <script>
75 function getObj (o) {
76         if(document.getElementById) return document.getElementById(o);
77         if(document.all) return document.all[o];
78 }
79 function show (n) {
80         o = typeof(n)=='string'?getObj (n):n;
81         if (!o) return;
82         if(o.style) o.style.display = '';
83         else o.display='';
84 }
85 </script>
86 ";
87 }
88
89 ?>