1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pluxml_ynh.git synced 2024-09-03 20:16:02 +02:00
pluxml_ynh/sources/core/admin/profil.php
2016-06-26 21:27:12 +02:00

79 lines
No EOL
2.8 KiB
PHP

<?php
/**
* Edition du profil utilisateur
*
* @package PLX
* @author Stephane F
**/
include(dirname(__FILE__).'/prepend.php');
# Control du token du formulaire
plxToken::validateFormToken($_POST);
# Hook Plugins
eval($plxAdmin->plxPlugins->callHook('AdminProfilPrepend'));
# On édite la configuration
if(!empty($_POST)) {
if(!empty($_POST['profil']))
$plxAdmin->editProfil($_POST);
elseif(!empty($_POST['password']))
$plxAdmin->editPassword($_POST);
header('Location: profil.php');
exit;
}
# On inclut le header
include(dirname(__FILE__).'/top.php');
$_profil = $plxAdmin->aUsers[$_SESSION['user']];
?>
<h2><?php echo L_PROFIL_EDIT_TITLE ?></h2>
<?php eval($plxAdmin->plxPlugins->callHook('AdminProfilTop')) # Hook Plugins ?>
<form action="profil.php" method="post" id="form_profil">
<fieldset class="withlabel">
<p class="field"><label><?php echo L_PROFIL_LOGIN ?>&nbsp;:</label>&nbsp;<strong><?php echo plxUtils::strCheck($_profil['login']) ?></strong></p>
<p class="field"><label for="id_name"><?php echo L_PROFIL_USER ?>&nbsp;:</label></p>
<?php plxUtils::printInput('name', plxUtils::strCheck($_profil['name']), 'text', '20-255') ?>
<p class="field"><label for="id_email"><?php echo L_PROFIL_MAIL ?>&nbsp;:</label></p>
<?php plxUtils::printInput('email', plxUtils::strCheck($_profil['email']), 'text', '30-255') ?>
<p class="field"><label for="id_lang"><?php echo L_PROFIL_ADMIN_LANG ?>&nbsp;:</label></p>
<?php plxUtils::printSelect('lang', plxUtils::getLangs(), $_profil['lang']) ?>
<p id="p_content"><label for="id_content"><?php echo L_PROFIL_INFOS ?>&nbsp;:</label></p>
<?php plxUtils::printArea('content',plxUtils::strCheck($_profil['infos']),140,5); ?>
</fieldset>
<?php eval($plxAdmin->plxPlugins->callHook('AdminProfil')) # Hook Plugins ?>
<p class="center">
<?php echo plxToken::getTokenPostMethod() ?>
<input class="button update" type="submit" name="profil" value="<?php echo L_PROFIL_UPDATE ?>" />
</p>
</form>
<h2><?php echo L_PROFIL_CHANGE_PASSWORD ?></h2>
<form action="profil.php" method="post" id="form_password">
<fieldset class="withlabel">
<p class="field"><label for="id_password1"><?php echo L_PROFIL_PASSWORD ?>&nbsp;:</label></p>
<?php plxUtils::printInput('password1', '', 'password', '20-255') ?>
<p class="field"><label for="id_password2"><?php echo L_PROFIL_CONFIRM_PASSWORD ?>&nbsp;:</label></p>
<?php plxUtils::printInput('password2', '', 'password', '20-255') ?>
</fieldset>
<p class="center">
<?php echo plxToken::getTokenPostMethod() ?>
<input class="button update" type="submit" name="password" value="<?php echo L_PROFIL_UPDATE_PASSWORD ?>" />
</p>
</form>
<?php
# Hook Plugins
eval($plxAdmin->plxPlugins->callHook('AdminProfilFoot'));
# On inclut le footer
include(dirname(__FILE__).'/foot.php');
?>