mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
274 lines
10 KiB
PHP
274 lines
10 KiB
PHP
<?php
|
|
/* Copyright (C) 2005-2015 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2010-2015 Regis Houssin <regis.houssin@capnetworks.com>
|
|
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro.com>
|
|
*
|
|
* This program 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/user/param_ihm.php
|
|
* \brief Page to show user setup for display
|
|
*/
|
|
|
|
require '../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/usergroups.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php';
|
|
|
|
$langs->load("companies");
|
|
$langs->load("products");
|
|
$langs->load("admin");
|
|
$langs->load("users");
|
|
$langs->load("languages");
|
|
|
|
// Defini si peux lire/modifier permisssions
|
|
$canreaduser=($user->admin || $user->rights->user->user->lire);
|
|
|
|
$id = GETPOST('id','int');
|
|
$action = GETPOST('action','alpha');
|
|
|
|
if ($id)
|
|
{
|
|
// $user est le user qui edite, $id est l'id de l'utilisateur edite
|
|
$caneditfield=((($user->id == $id) && $user->rights->user->self->creer)
|
|
|| (($user->id != $id) && $user->rights->user->user->creer));
|
|
}
|
|
|
|
// Security check
|
|
$socid=0;
|
|
if ($user->societe_id > 0) $socid = $user->societe_id;
|
|
$feature2 = (($socid && $user->rights->user->self->creer)?'':'user');
|
|
if ($user->id == $id) // A user can always read its own card
|
|
{
|
|
$feature2='';
|
|
$canreaduser=1;
|
|
}
|
|
$result = restrictedArea($user, 'user', $id, 'user&user', $feature2);
|
|
if ($user->id <> $id && ! $canreaduser) accessforbidden();
|
|
|
|
$dirtop = "../core/menus/standard";
|
|
$dirleft = "../core/menus/standard";
|
|
|
|
// Charge utilisateur edite
|
|
$object = new User($db);
|
|
$object->fetch($id);
|
|
$object->getrights();
|
|
|
|
// Liste des zone de recherche permanentes supportees
|
|
$searchform=array("main_searchform_societe","main_searchform_contact","main_searchform_produitservice");
|
|
$searchformconst=array($conf->global->MAIN_SEARCHFORM_SOCIETE,$conf->global->MAIN_SEARCHFORM_CONTACT,$conf->global->MAIN_SEARCHFORM_PRODUITSERVICE);
|
|
$searchformtitle=array($langs->trans("Companies"),$langs->trans("Contacts"),$langs->trans("ProductsAndServices"));
|
|
|
|
$form = new Form($db);
|
|
$formadmin=new FormAdmin($db);
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
if ($action == 'update' && ($caneditfield || ! empty($user->admin)))
|
|
{
|
|
if (! $_POST["cancel"])
|
|
{
|
|
$tabparam=array();
|
|
|
|
if ($_POST["check_MAIN_LANG_DEFAULT"]=="on") $tabparam["MAIN_LANG_DEFAULT"]=$_POST["main_lang_default"];
|
|
else $tabparam["MAIN_LANG_DEFAULT"]='';
|
|
|
|
if ($_POST["check_SIZE_LISTE_LIMIT"]=="on") $tabparam["MAIN_SIZE_LISTE_LIMIT"]=$_POST["main_size_liste_limit"];
|
|
else $tabparam["MAIN_SIZE_LISTE_LIMIT"]='';
|
|
|
|
if ($_POST["check_MAIN_THEME"]=="on") $tabparam["MAIN_THEME"]=$_POST["main_theme"];
|
|
else $tabparam["MAIN_THEME"]='';
|
|
|
|
$tabparam["MAIN_SEARCHFORM_CONTACT"]=$_POST["main_searchform_contact"];
|
|
$tabparam["MAIN_SEARCHFORM_SOCIETE"]=$_POST["main_searchform_societe"];
|
|
$tabparam["MAIN_SEARCHFORM_PRODUITSERVICE"]=$_POST["main_searchform_produitservice"];
|
|
|
|
$result=dol_set_user_param($db, $conf, $object, $tabparam);
|
|
|
|
header('Location: '.$_SERVER["PHP_SELF"].'?id='.$id);
|
|
exit;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
llxHeader();
|
|
|
|
$head = user_prepare_head($object);
|
|
|
|
$title = $langs->trans("User");
|
|
|
|
if ($action == 'edit')
|
|
{
|
|
print '<form method="post" action="'.$_SERVER["PHP_SELF"].'">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<input type="hidden" name="action" value="update">';
|
|
print '<input type="hidden" name="id" value="'.$id.'">';
|
|
}
|
|
|
|
|
|
dol_fiche_head($head, 'guisetup', $title, 0, 'user');
|
|
|
|
|
|
print '<table class="border" width="100%">';
|
|
|
|
// Ref
|
|
print '<tr><td width="25%">'.$langs->trans("Ref").'</td>';
|
|
print '<td colspan="2">';
|
|
print $form->showrefnav($object,'id','',$user->rights->user->user->lire || $user->admin);
|
|
print '</td>';
|
|
print '</tr>';
|
|
|
|
// LastName
|
|
print '<tr><td width="25%">'.$langs->trans("LastName").'</td>';
|
|
print '<td colspan="2">'.$object->lastname.'</td>';
|
|
print "</tr>\n";
|
|
|
|
// FirstName
|
|
print '<tr><td width="25%">'.$langs->trans("FirstName").'</td>';
|
|
print '<td colspan="2">'.$object->firstname.'</td>';
|
|
print "</tr>\n";
|
|
|
|
print '</table><br>';
|
|
|
|
|
|
if ($action == 'edit')
|
|
{
|
|
print '<script type="text/javascript" language="javascript">
|
|
jQuery(document).ready(function() {
|
|
$("#main_lang_default").change(function() {
|
|
$("#check_MAIN_LANG_DEFAULT").prop("checked", true);
|
|
});
|
|
$("#main_size_liste_limit").keyup(function() {
|
|
if ($(this).val().length) $("#check_SIZE_LISTE_LIMIT").prop("checked", true);
|
|
else $("#check_SIZE_LISTE_LIMIT").prop("checked", false);
|
|
});
|
|
});
|
|
</script>';
|
|
|
|
clearstatcache();
|
|
$var=true;
|
|
|
|
print '<table class="noborder" width="100%">';
|
|
print '<tr class="liste_titre"><td width="25%">'.$langs->trans("Parameter").'</td><td width="25%">'.$langs->trans("DefaultValue").'</td><td> </td><td>'.$langs->trans("PersonalValue").'</td></tr>';
|
|
|
|
// Langue par defaut
|
|
$var=!$var;
|
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("Language").'</td>';
|
|
print '<td>';
|
|
$s=picto_from_langcode($conf->global->MAIN_LANG_DEFAULT);
|
|
print $s?$s.' ':'';
|
|
print ($conf->global->MAIN_LANG_DEFAULT=='auto'?$langs->trans("AutoDetectLang"):$langs->trans("Language_".$conf->global->MAIN_LANG_DEFAULT));
|
|
print '</td>';
|
|
print '<td align="left" class="nowrap" width="20%"><input '.$bc[$var].' name="check_MAIN_LANG_DEFAULT" id="check_MAIN_LANG_DEFAULT" type="checkbox" '.(! empty($object->conf->MAIN_LANG_DEFAULT)?" checked":"");
|
|
print empty($dolibarr_main_demo)?'':' disabled="disabled"'; // Disabled for demo
|
|
print '> '.$langs->trans("UsePersonalValue").'</td>';
|
|
print '<td>';
|
|
print $formadmin->select_language((! empty($object->conf->MAIN_LANG_DEFAULT)?$object->conf->MAIN_LANG_DEFAULT:''),'main_lang_default',1,null,0,0,(! empty($dolibarr_main_demo)));
|
|
print '</td></tr>';
|
|
|
|
// Taille max des listes
|
|
$var=!$var;
|
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("MaxSizeList").'</td>';
|
|
print '<td>'.$conf->global->MAIN_SIZE_LISTE_LIMIT.'</td>';
|
|
print '<td align="left" class="nowrap" width="20%"><input '.$bc[$var].' name="check_SIZE_LISTE_LIMIT" id="check_SIZE_LISTE_LIMIT" type="checkbox" '.(! empty($object->conf->MAIN_SIZE_LISTE_LIMIT)?" checked":"");
|
|
print empty($dolibarr_main_demo)?'':' disabled="disabled"'; // Disabled for demo
|
|
print '> '.$langs->trans("UsePersonalValue").'</td>';
|
|
print '<td><input class="flat" name="main_size_liste_limit" id="main_size_liste_limit" size="4" value="' . (! empty($object->conf->MAIN_SIZE_LISTE_LIMIT)?$object->conf->MAIN_SIZE_LISTE_LIMIT:'') . '"></td></tr>';
|
|
|
|
print '</table><br>';
|
|
|
|
// Theme
|
|
show_theme($object,(($user->admin || empty($dolibarr_main_demo))?1:0),true);
|
|
|
|
dol_fiche_end();
|
|
|
|
|
|
print '<div class="center">';
|
|
print '<input type="submit" class="button" name="save" value="'.$langs->trans("Save").'">';
|
|
print ' ';
|
|
print '<input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'">';
|
|
print '</div>';
|
|
|
|
print '</form>';
|
|
|
|
}
|
|
else
|
|
{
|
|
$var=true;
|
|
|
|
print '<table class="noborder" width="100%">';
|
|
print '<tr class="liste_titre"><td width="25%">'.$langs->trans("Parameter").'</td><td width="25%">'.$langs->trans("DefaultValue").'</td><td> </td><td>'.$langs->trans("PersonalValue").'</td></tr>';
|
|
|
|
$var=!$var;
|
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("Language").'</td>';
|
|
print '<td>';
|
|
$s=picto_from_langcode($conf->global->MAIN_LANG_DEFAULT);
|
|
print ($s?$s.' ':'');
|
|
print (isset($conf->global->MAIN_LANG_DEFAULT) && $conf->global->MAIN_LANG_DEFAULT=='auto'?$langs->trans("AutoDetectLang"):$langs->trans("Language_".$conf->global->MAIN_LANG_DEFAULT));
|
|
print '</td>';
|
|
print '<td align="left" class="nowrap" width="20%"><input '.$bc[$var].' type="checkbox" disabled '.(! empty($object->conf->MAIN_LANG_DEFAULT)?" checked":"").'> '.$langs->trans("UsePersonalValue").'</td>';
|
|
print '<td>';
|
|
$s=(isset($object->conf->MAIN_LANG_DEFAULT) ? picto_from_langcode($object->conf->MAIN_LANG_DEFAULT) : '');
|
|
print ($s?$s.' ':'');
|
|
print (isset($object->conf->MAIN_LANG_DEFAULT) && $object->conf->MAIN_LANG_DEFAULT=='auto'?$langs->trans("AutoDetectLang"):(! empty($object->conf->MAIN_LANG_DEFAULT)?$langs->trans("Language_".$object->conf->MAIN_LANG_DEFAULT):''));
|
|
print '</td></tr>';
|
|
|
|
$var=!$var;
|
|
print '<tr '.$bc[$var].'><td>'.$langs->trans("MaxSizeList").'</td>';
|
|
print '<td>'.(! empty($conf->global->MAIN_SIZE_LISTE_LIMIT)?$conf->global->MAIN_SIZE_LISTE_LIMIT:' ').'</td>';
|
|
print '<td align="left" class="nowrap" width="20%"><input '.$bc[$var].' type="checkbox" disabled '.(! empty($object->conf->MAIN_SIZE_LISTE_LIMIT)?" checked":"").'> '.$langs->trans("UsePersonalValue").'</td>';
|
|
print '<td>' . (! empty($object->conf->MAIN_SIZE_LISTE_LIMIT)?$object->conf->MAIN_SIZE_LISTE_LIMIT:' ') . '</td></tr>';
|
|
|
|
print '</table><br>';
|
|
|
|
|
|
// Skin
|
|
show_theme($object,0,true);
|
|
|
|
dol_fiche_end();
|
|
|
|
|
|
print '<div class="tabsAction">';
|
|
if (empty($user->admin) && ! empty($dolibarr_main_demo))
|
|
{
|
|
print "<a class=\"butActionRefused\" title=\"".$langs->trans("FeatureDisabledInDemo")."\" href=\"#\">".$langs->trans("Modify")."</a>";
|
|
}
|
|
else
|
|
{
|
|
if ($caneditfield || ! empty($user->admin)) // Si utilisateur edite = utilisateur courant (pas besoin de droits particulier car il s'agit d'une page de modif d'output et non de données) ou si admin
|
|
{
|
|
print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&id='.$object->id.'">'.$langs->trans("Modify").'</a>';
|
|
}
|
|
else
|
|
{
|
|
print "<a class=\"butActionRefused\" title=\"".$langs->trans("NotEnoughPermissions")."\" href=\"#\">".$langs->trans("Modify")."</a>";
|
|
}
|
|
}
|
|
|
|
print '</div>';
|
|
|
|
}
|
|
|
|
dol_fiche_end();
|
|
|
|
llxFooter();
|
|
$db->close();
|