svn+ssh://ns352270.ovh.net/svn/phpcompta/branches/rel600-dynamic-menu ........ r4209 | danydb | 2011-10-13 22:06:13 +0200 (Thu, 13 Oct 2011) | 1 line Add new files ........ r4229 | danydb | 2011-10-23 20:51:09 +0200 (Sun, 23 Oct 2011) | 1 line Dynamic menu: impress works ........ r4230 | danydb | 2011-10-24 22:38:15 +0200 (Mon, 24 Oct 2011) | 2 lines #241 : modularity for SALE ledger ........ r4231 | danydb | 2011-10-24 22:47:02 +0200 (Mon, 24 Oct 2011) | 2 lines #241 : modularity for PURCHASE ledger ........ r4232 | danydb | 2011-10-25 23:03:53 +0200 (Tue, 25 Oct 2011) | 2 lines #241 : modularity for FINANCIAL ledger ........ r4234 | danydb | 2011-10-26 01:09:02 +0200 (Wed, 26 Oct 2011) | 2 lines #241 : modularity for CARD ledger + alphanum prob ........ r4237 | danydb | 2011-10-27 20:59:39 +0200 (Thu, 27 Oct 2011) | 2 lines #241 : modularity for lettering ........ r4238 | danydb | 2011-10-27 21:10:19 +0200 (Thu, 27 Oct 2011) | 3 lines #241 :adapt width submenu ........ r4239 | danydb | 2011-10-27 21:40:42 +0200 (Thu, 27 Oct 2011) | 3 lines #241 : modularity : old user_advanced.php ........ r4240 | danydb | 2011-10-27 21:44:27 +0200 (Thu, 27 Oct 2011) | 3 lines #241 : modularity : deprecated function ........ r4241 | danydb | 2011-10-27 21:46:26 +0200 (Thu, 27 Oct 2011) | 3 lines #241 : modularity : remove obsolete files ........ r4242 | danydb | 2011-10-27 21:54:39 +0200 (Thu, 27 Oct 2011) | 3 lines #241 : modularity : gestion card + gestion IMP ........ r4243 | danydb | 2011-10-27 22:28:36 +0200 (Thu, 27 Oct 2011) | 3 lines #241 : modularity : gestion customer + supplier + forecast + follow up ........ r4244 | danydb | 2011-10-28 00:47:55 +0200 (Fri, 28 Oct 2011) | 5 lines #241 : modularity : parameter company periode misc : tva , card attr, middle of payment, accounting,cat of doc, cat of card ........ r4245 | danydb | 2011-10-28 00:51:43 +0200 (Fri, 28 Oct 2011) | 1 line update menu_ref, profile_menu ........ r4246 | danydb | 2011-10-28 00:52:13 +0200 (Fri, 28 Oct 2011) | 1 line rewriting : change ShowMenuPcmn by menu_acc_plan ........ r4247 | danydb | 2011-10-28 20:04:01 +0200 (Fri, 28 Oct 2011) | 1 line #241 : modularity : parameter Document ........ r4248 | danydb | 2011-10-28 22:00:42 +0200 (Fri, 28 Oct 2011) | 1 line #241 : modularity : préférence ........ r4249 | danydb | 2011-10-28 22:16:44 +0200 (Fri, 28 Oct 2011) | 1 line last fix ........
247 lines
6.5 KiB
PHP
247 lines
6.5 KiB
PHP
<?php
|
|
/*
|
|
* This file is part of PhpCompta.
|
|
*
|
|
* PhpCompta 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.
|
|
*
|
|
* PhpCompta 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 PhpCompta; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
/* $Revision$ */
|
|
// Copyright Author Dany De Bontridder ddebontridder@yahoo.fr
|
|
/* !\file
|
|
* \brief this file is always included and then executed
|
|
* it permits to change the user preferences
|
|
* \see user_pref.php
|
|
*/
|
|
|
|
require_once('class_user.php');
|
|
require_once("class_iselect.php");
|
|
require_once("class_iperiod.php");
|
|
require_once('class_acc_report.php');
|
|
require_once('class_periode.php');
|
|
echo '<DIV class="content">';
|
|
//----------------------------------------------------------------------
|
|
// Change password
|
|
if ( isset ($_POST['val']))
|
|
{
|
|
/*
|
|
* @todo save the preference
|
|
*/
|
|
var_dump($_POST);
|
|
}
|
|
if (isset($_POST['pass_1'])
|
|
&& strlen(trim($_POST['pass_1'])) != 0)
|
|
{
|
|
if ($_POST['pass_1'] != $_POST['pass_2'])
|
|
{
|
|
alert(_("Les mots de passe ne correspondent pas. Mot de passe inchangé"));
|
|
}
|
|
else
|
|
{
|
|
$Rep = new Database();
|
|
$l_pass = md5($_POST['pass_1']);
|
|
$Res = $Rep->exec_sql("update ac_users set use_pass='$l_pass' where use_login='" . $_SESSION['g_user'] . "'");
|
|
$pass = $_POST['pass_1'];
|
|
$_SESSION['g_pass'] = $_POST['pass_1'];
|
|
$g_pass = $_POST['pass_1'];
|
|
echo "<i>" . _('Mot de passe est modifiée') . "</i>";
|
|
}
|
|
}
|
|
|
|
if (!isset($_REQUEST['gDossier']))
|
|
{
|
|
echo HtmlInput::button_anchor(_('Retour'), 'user_login.php?');
|
|
}
|
|
else
|
|
{
|
|
echo '<h2 class="info2">' . _('Changez vos préférences') . '</h2>';
|
|
}
|
|
?>
|
|
|
|
<div class="content">
|
|
|
|
<FORM METHOD="POST">
|
|
<fieldset><legend><?php echo _('Options Générales')?></legend>
|
|
<table>
|
|
<tr><td>
|
|
Mot de passe :
|
|
</td>
|
|
<td><input type="password" value="" class="input_type" name="pass_1" nohistory>
|
|
<input type="password" value="" class="input_type" name="pass_2" nohistory>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
$Rep = new Database();
|
|
// charge tous les styles
|
|
$res = $Rep->exec_sql("select the_name from theme
|
|
order by the_name");
|
|
$astyle = array();
|
|
for ($i = 0; $i < Database::num_row($res); $i++)
|
|
{
|
|
$st = Database::fetch_array($res, $i);
|
|
$astyle[] = $st['the_name'];
|
|
}
|
|
// Formatte le display
|
|
$disp_style = "<SELECT NAME=\"style_user\" >";
|
|
foreach ($astyle as $st)
|
|
{
|
|
if ($st == $_SESSION['g_theme'])
|
|
{
|
|
$disp_style.='<OPTION VALUE="' . $st . '" SELECTED>' . $st;
|
|
}
|
|
else
|
|
{
|
|
$disp_style.='<OPTION VALUE="' . $st . '">' . $st;
|
|
}
|
|
}
|
|
$disp_style.="</SELECT>";
|
|
?>
|
|
<p>
|
|
<tr>
|
|
<td>
|
|
<?php echo _('Thème');
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php print $disp_style;
|
|
?>
|
|
</td>
|
|
</tr>
|
|
|
|
<?php
|
|
global $g_user;
|
|
$inside_dossier = false;
|
|
// Si utilise un dossier alors propose de changer
|
|
// la periode par defaut
|
|
if (isset($_REQUEST['gDossier']))
|
|
{
|
|
$inside_dossier = true;
|
|
$msg = "";
|
|
$cn = new Database($_REQUEST['gDossier']);
|
|
$g_user->cn = $cn;
|
|
|
|
if (isset($_POST['period']))
|
|
{
|
|
$periode = $_POST["period"];
|
|
$g_user->set_periode($periode);
|
|
}
|
|
|
|
$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>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
<tr>
|
|
<td><? 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>
|
|
</table>
|
|
</fieldset>
|
|
<?php
|
|
if ($inside_dossier)
|
|
{
|
|
/* Pref for welcome page */
|
|
echo '<fieldset>';
|
|
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>';
|
|
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 HtmlInput::submit("val", _("Valider"));
|
|
echo '</form>';
|
|
|
|
|
|
|
|
|
|
if (!$inside_dossier)
|
|
{
|
|
echo HtmlInput::button_anchor(_('Retour'), 'user_login.php?');
|
|
}
|
|
|
|
|
|
|
|
echo "</DIV>";
|
|
?>
|