2006 => 2007 Happy New Year\!
[platal.git] / include / applis.func.inc.php
index 6f317ff..4624030 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2006 Polytechnique.org                              *
+ *  Copyright (C) 2003-2007 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -22,9 +22,8 @@
 global $page;
 
 function applis_options($current=0) {
-    global $globals;
     $html = '<option value="-1"></option>';
-    $res  = $globals->xdb->iterator("select * from applis_def order by text");
+    $res  = XDB::iterator("select * from applis_def order by text");
     while ($arr_appli = $res->next()) { 
        $html .= '<option value="'.$arr_appli["id"].'"';
        if ($arr_appli["id"]==$current) $html .= " selected='selected'";
@@ -45,9 +44,8 @@ $page->register_function('applis_options','_applis_options_smarty');
 /** affiche un Array javascript contenant les types de chaque appli
  */
 function applis_type(){
-    global $globals;
     $html = "";
-    $res=$globals->xdb->iterRow("select type from applis_def order by text");
+    $res=XDB::iterRow("select type from applis_def order by text");
     if (list($appli_type) = $res->next()) {
        $html .= "new Array('".str_replace(",","','",$appli_type)."')";
     }
@@ -61,8 +59,7 @@ $page->register_function('applis_type','applis_type');
 /** affiche tous les types possibles d'applis
  */
 function applis_type_all(){
-    global $globals;
-    $res = $globals->xdb->query("show columns from applis_def like 'type'");
+    $res = XDB::query("show columns from applis_def like 'type'");
     $arr_appli = $res->fetchOneAssoc();
     return str_replace(")","",str_replace("set(","",$arr_appli["Type"]));
 }