[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/se3master/var/www/se3/mozilla_profiles/ -> profile.php (source)

   1  <?php
   2  
   3     /**
   4     
   5     * Deploiement et modification des profils mozilla des postes clients 
   6     * @Version $Id: profile.php 8540 2015-03-14 13:23:26Z plouf $ 
   7     
   8    
   9     * @Projet LCS / SambaEdu 
  10     
  11     * @auteurs  franck.molle@ac-rouen.fr
  12     
  13     * @Licence Distribue selon les termes de la licence GPL
  14     
  15     * @note 
  16     
  17     */
  18  
  19     /**
  20  
  21     * @Repertoire: mozilla_profiles
  22     * file: profile.php
  23  
  24    */    
  25  
  26  
  27  require("entete.inc.php");
  28  
  29  //aide
  30  $_SESSION["pageaide"]="Gestion_Mozilla";
  31  
  32  
  33  //Verification existence utilisateur dans l'annuaire
  34  require("config.inc.php");
  35  require ("ldap.inc.php");
  36  
  37  //permet l'autehtification is_admin
  38  require("ihm.inc.php");
  39  
  40  // Traduction
  41  require_once  ("lang.inc.php");
  42  bindtextdomain('se3-mozilla',"/var/www/se3/locale");
  43  textdomain ('se3-mozilla');
  44  
  45  //AUTHENTIFICATION
  46  if (is_admin("computer_is_admin",$login)!="Y")
  47      die (gettext("Vous n'avez pas les droits suffisants pour acc&#233;der &#224; cette fonction")."</BODY></HTML>");
  48  
  49  
  50  // Titre
  51  echo "<h1>".gettext("Configuration des navigateurs et de Thunderbird")."</h1>\n";
  52  
  53  
  54      /*if (file_exists("/var/se3/unattended/install/packages/firefox/firefox-config.bat") or file_exists("/usr/share/se3/logonpy/logon.py")) {
  55          echo "<H3>".gettext("Configuration dynamique des profils Mozilla Firefox 3.x")." </H3>\n";
  56          echo "<a href=\"/mozilla_profiles/firefox-se3-NG.php\">Effectuer le param&#233;trage</a>";
  57          echo " <u onmouseover=\"return escape".gettext("('Permet la configuration directe des clients firefox 3 (non pris en compte par firefox 7).  ATTENTION : ce param&#233;trage est prioritaire au contenu du fichier local pref.js. Il est donc obligatoire pour fixer un proxy !!.')")."\"><img name=\"action_image2\"  src=\"../elements/images/system-help.png\"></u> ";
  58          echo "<br><br><br>";
  59  
  60      }*/
  61      //EVALUE SI UNE SAISIE A ETE EFFECTUEE: AUTO-APPEL DE LA PAGE APRES FORMULAIRE REMPLI
  62      
  63      $form = "<form action=\"firefox.php\" method=\"post\">\n";
  64      // Form de selection d'actions
  65      $form .="<H3>".gettext("Modification des param&#232;tres Firefox 7 et Internet Explorer")." </H3>\n";
  66      $form .= "<SELECT name=\"choix\" onchange=submit()>\n";
  67      $form .= "<OPTION VALUE='choix'>--------------------------------------".gettext(" Choisir ")."--------------------------------------</OPTION>\n";
  68  
  69      //$form .= "<OPTION VALUE='deploy_nosave'>".gettext("D&#233;ployer et remplacer les profils existants")."</OPTION>\n";
  70      $form .= "<OPTION VALUE='deploy_nosave'>".gettext("D&#233;ployer et / ou remplacer des profils firefox")."</OPTION>\n";
  71      $form .= "<OPTION VALUE='modif'>".gettext("Modifier la page de d&#233;marrage")."</OPTION>\n";
  72      $form .= "<OPTION VALUE='modif_proxy'>".gettext("Param&#233;trer le proxy")."</OPTION>\n";
  73  
  74      $form .= "</SELECT>\n";
  75      $form.="</form>\n";
  76      echo $form;
  77  
  78      echo "<br><br>";
  79  
  80          $form = "<form action=\"thunderbird.php?config=init\" method=\"post\">\n";
  81          // Form de selection d'actions
  82          $form .="<H3>".gettext("Deploiement des profils Mozilla Thunderbird :")." </H3>\n";
  83          $form .= "<SELECT name=\"choix\" onchange=submit()>\n";
  84          $form .= "<OPTION VALUE='choix'>-----------------------------------------".gettext(" Choisir ")."---------------------------------------------</OPTION>\n";
  85          $form .= "<OPTION VALUE='deploy_all'>".gettext("D&#233;ployer les profils dans tous les espaces personnels")."</OPTION>\n";
  86          $form .= "<OPTION VALUE='deploy_grp'>".gettext("D&#233;ployer les profils dans certains espaces personnels")." </OPTION>\n";
  87          $form .= "</SELECT>\n";
  88          $form.="</form>\n";
  89          echo $form;
  90          echo "<br>";
  91  
  92  include("pdp.inc.php");
  93  ?>


Generated: Tue Mar 17 22:47:18 2015 Cross-referenced by PHPXref 0.7.1