<?php /* * This file is part of NOALYSS. * * NOALYSS is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * NOALYSS is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NOALYSS; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ // Copyright Author Dany De Bontridder danydb@aevalys.eu /**\file * \brief this file is always included and then executed * it permits to change the user preferences */ if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis'); require_once NOALYSS_INCLUDE.'/class_user.php'; require_once NOALYSS_INCLUDE.'/class_iselect.php'; require_once NOALYSS_INCLUDE.'/class_iperiod.php'; require_once NOALYSS_INCLUDE.'/class_acc_report.php'; require_once NOALYSS_INCLUDE.'/class_periode.php'; echo HtmlInput::title_box(_('Préférence'), 'preference_div'); echo '<DIV class="content">'; echo '<p class="notice">'; echo _("Si vous validez, la page sera rechargée et vous pourriez perdre ce que vous faisiez"); echo '</p>'; //---------------------------------------------------------------------- // global $g_user; $g_user=new User($cn); $inside_dossier = false; if (isset($_REQUEST['gDossier']) && $_REQUEST['gDossier']<>0) { $g_user->load_global_pref(); $msg = ""; $cn = new Database($_REQUEST['gDossier']); $g_user->cn = $cn; $inside_dossier = true; $local_pref=$g_user->get_preference(); } ////////////////////////////////////////////////////////////////////////// // Theme ////////////////////////////////////////////////////////////////////////// $repo = new Database(); // charge tous les styles $res = $repo->exec_sql("select the_name from theme order by the_name"); $style = new ISelect('style_user'); $style->value = $repo->make_array("select the_name,the_name from theme order by the_name"); $style->selected =$_SESSION['g_theme']; ?> <div class="content" > <FORM METHOD="POST"> <fieldset style="margin: 1%"><legend><?php echo _('Options Générales')?></legend> <table> <tr> <td> <?php echo _('Email')?> </td> <td> <input type="text" name="p_email" value="<?php echo $g_user->email?>" class="input_text"> </td> </tr> <tr><td> Mot de passe : </td> <td><input type="password" value="" class="input_text" name="pass_1" nohistory> <input type="password" value="" class="input_text" name="pass_2" nohistory> </td> </tr> <tr> <td> <?php echo _('Thème');?> </td> <td> <?php echo $style->input();?> </td> </tr> <?php if ($inside_dossier) { $l_user_per = $g_user->get_periode(); if ($l_user_per == "") $l_user_per = $cn->get_value("select min(p_id) from parm_periode where p_closed='f'"); // if periode is closed then warns the users $period = new Periode($cn, $l_user_per); $period->p_id = $l_user_per; $period->jrn_def_id = 0; if ($period->is_closed($l_user_per) == 1) { $msg = _('Attention cette période est fermée, vous ne pourrez rien modifier dans le module comptable'); $msg = '<h2 class="notice">' . $msg . '</h2>'; } $period = new IPeriod("period"); $period->user = $g_user; $period->cn = $cn; $period->filter_year = false; $period->value = $l_user_per; $period->type = ALL; $l_form_per = $period->input(); ?> <tr><td><?php echo _('Période');?></td> <td> <?php printf(' %s ', $l_form_per);?> </td> <td> <?php echo $msg;?></td> <tr> <td><?php echo _('Taille des pages');?></td> <td> <SELECT NAME="p_size"> <option value="15">15 <option value="25">25 <option value="50">50 <option value="100">100 <option value="150">150 <option value="200">200 <option value="-1"><?php echo _('Illimité');?> <?php $label = ($_SESSION['g_pagesize'] == -1) ? _('Illimité') : $_SESSION['g_pagesize']; echo '<option value="' . $_SESSION['g_pagesize'] . '" selected>' . $label; ?> </SELECT> </td> </tr> <?php } ?> </table> </fieldset> <?php if ($inside_dossier) { /* Pref for welcome page */ echo '<fieldset style="margin: 1%">'; echo '<legend>' . _('Options pour la page d\'accueil') . '</legend>'; echo _('Mini-Rapport : '); $rapport = new Acc_Report($cn); $aRapport = $rapport->make_array(); $aRapport[] = array("value" => 0, "label" => _('Aucun mini rapport')); $wRapport = new ISelect(); $wRapport->name = "minirap"; $wRapport->selected = $g_user->get_mini_report(); $wRapport->value = $aRapport; echo $wRapport->input(); echo '<span class="notice">' . _('Le mini rapport est un rapport qui s\'affiche sur votre page d\'accueil') . '</span>'; echo '</fieldset>'; } echo '<fieldset style="margin: 1%">'; echo '<legend>' . _('Langue') . '</legend>'; echo _('Selectionnez votre langue'); $aLang = array(array(_('Français'), 'fr_FR.utf8'), array(_('Anglais'), 'en_US.utf8'), array(_('Néerlandais'), 'nl_NL.utf8'), ); echo '<select name="lang" id="l">'; for ($i = 0; $i < count($aLang); $i++) { $sel = ""; if ($aLang[$i][1] == $_SESSION['g_lang']) $sel = " selected "; printf('<option value="%s" %s>%s</option>', $aLang[$i][1], $sel, $aLang[$i][0]); } echo '</select>'; echo '</fieldset>'; echo '<p style="text-align:center">'; echo HtmlInput::button_close('preference_div'); echo HtmlInput::submit("set_preference", _("Valider")); echo '</p>'; echo '</form>'; echo "</DIV>"; ?>