UTF-8 fixes
[platal.git] / include / synchro_ax.inc.php
index affab3c..3648e54 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2004 Polytechnique.org                              *
+ *  Copyright (C) 2003-2007 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -24,12 +24,15 @@ require_once("xorg.inc.php");
 
 require_once('user.func.inc.php');
 
+function is_ax_key_missing() {
+    global $globals;
+    return !isset($globals->webservice->private_key_ax) || !is_file($globals->webservice->private_key_ax);
+}
+
 function get_user_ax($matricule_ax, $raw=false)
 {
     require_once('webservices/ax/client.inc');
 
-    global $globals;
-
     $ancien = recupere_infos_ancien($matricule_ax);
 
     $userax = Array();
@@ -42,7 +45,7 @@ function get_user_ax($matricule_ax, $raw=false)
     $userax['sexe'] = ($ancien->Civilite() != 'M')?1:0;
     $userax['promo'] = $ancien->Promo();
 /*    $userax['nationalite'] = $ancien->Nationalite();
-    if ($userax['nationalite'] == 'F') $userax['nationalite'] = 'Français'; */
+    if ($userax['nationalite'] == 'F') $userax['nationalite'] = 'Français'; */
     //$userax['date'] = substr($ancien[12], 0, 10);
     $userax['mobile'] = trim($ancien->Mobile(0));
 /*    if ($ancien->Corps() == 'D' || $ancien->Corps() == 'Z') {
@@ -90,7 +93,7 @@ function get_user_ax($matricule_ax, $raw=false)
         if ($ancien->Tel($i) || $ancien->Fax($i)) {
             $adrax['tels'] = array();
             if ($tel = $ancien->Tel($i))
-                $adrax['tels'][] = array('tel' => $tel, 'tel_type' => 'Tél.', 'tel_pub' => 'ax');
+                $adrax['tels'][] = array('tel' => $tel, 'tel_type' => 'Tél.', 'tel_pub' => 'ax');
             if ($tel = $ancien->Fax($i))
                 $adrax['tels'][] = array('tel' => $tel, 'tel_type' => 'Fax', 'tel_pub' => 'ax');
         }
@@ -114,5 +117,5 @@ function ax_synchronize($login, $uid) {
     $diff = diff_user_details($userax, $user, 'ax');
     set_user_details($user['user_id'], $diff);
 }
-// vim:set et sw=4 sts=4 sws=4:
+// vim:set et sw=4 sts=4 sws=4 enc=utf-8:
 ?>