2018-05-14 00:00:10 +02:00
|
|
|
<?php defined('BLUDIT') or die('Bludit CMS.');
|
2015-10-19 00:45:58 +02:00
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::pageTitle(array('title'=>$L->g('Edit user'), 'icon'=>'person'));
|
2015-10-19 00:45:58 +02:00
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formOpen(array());
|
2015-11-15 22:37:34 +01:00
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formInputHidden(array(
|
2015-10-20 05:14:28 +02:00
|
|
|
'name'=>'tokenCSRF',
|
2015-11-28 15:47:03 +01:00
|
|
|
'value'=>$Security->getTokenCSRF()
|
2015-10-19 00:45:58 +02:00
|
|
|
));
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formInputHidden(array(
|
2015-10-19 00:45:58 +02:00
|
|
|
'name'=>'username',
|
2018-05-14 00:00:10 +02:00
|
|
|
'value'=>$user->username()
|
2015-10-19 00:45:58 +02:00
|
|
|
));
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formInputText(array(
|
|
|
|
'name'=>'usernameDisabled',
|
2015-11-07 01:23:50 +01:00
|
|
|
'label'=>$L->g('Username'),
|
2018-05-14 00:00:10 +02:00
|
|
|
'value'=>$user->username(),
|
|
|
|
'class'=>'',
|
|
|
|
'placeholder'=>'',
|
2015-11-07 01:23:50 +01:00
|
|
|
'disabled'=>true,
|
|
|
|
'tip'=>''
|
|
|
|
));
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
if ($Login->role()==='admin') {
|
|
|
|
echo Bootstrap::formSelect(array(
|
|
|
|
'name'=>'role',
|
|
|
|
'label'=>$L->g('Role'),
|
2018-05-20 21:48:43 +02:00
|
|
|
'options'=>array('editor'=>$L->g('Editor'), 'moderator'=>$L->g('Moderator'), 'admin'=>$L->g('Administrator')),
|
2018-05-14 00:00:10 +02:00
|
|
|
'selected'=>$user->role(),
|
|
|
|
'class'=>'',
|
|
|
|
'tip'=>''
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
echo Bootstrap::formInputText(array(
|
|
|
|
'name'=>'email',
|
|
|
|
'label'=>$L->g('Email'),
|
|
|
|
'value'=>$user->email(),
|
|
|
|
'class'=>'',
|
|
|
|
'placeholder'=>'',
|
2015-10-19 00:45:58 +02:00
|
|
|
'tip'=>''
|
|
|
|
));
|
|
|
|
|
2018-05-15 20:12:15 +02:00
|
|
|
echo Bootstrap::formTitle(array('title'=>$L->g('Password')));
|
|
|
|
|
|
|
|
echo '
|
|
|
|
<div class="form-group row">
|
|
|
|
<div class="col-sm-2"></div>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<a href="'.HTML_PATH_ADMIN_ROOT.'user-password/'.$user->username().'" class="btn btn-primary mr-2">'.$L->g('Change password').'</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
';
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formTitle(array('title'=>$L->g('Authentication Token')));
|
2015-10-19 00:45:58 +02:00
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formInputText(array(
|
|
|
|
'name'=>'tokenAuth',
|
|
|
|
'label'=>$L->g('Token'),
|
|
|
|
'value'=>$user->tokenAuth(),
|
|
|
|
'class'=>'',
|
|
|
|
'tip'=>$L->g('this-token-is-similar-to-a-password-it-should-not-be-shared')
|
2015-10-19 00:45:58 +02:00
|
|
|
));
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formTitle(array('title'=>$L->g('Status')));
|
2016-09-07 02:14:57 +02:00
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formInputText(array(
|
|
|
|
'name'=>'status',
|
|
|
|
'label'=>$L->g('Current status'),
|
|
|
|
'value'=>$user->enabled()?$L->g('Enabled'):$L->g('Disabled'),
|
|
|
|
'class'=>'',
|
|
|
|
'disabled'=>true,
|
|
|
|
'tip'=>$user->enabled()?'':$L->g('To enable the user you must set a new password')
|
2015-10-19 00:45:58 +02:00
|
|
|
));
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
if ($user->enabled()) {
|
|
|
|
echo '
|
|
|
|
<div class="form-group row">
|
|
|
|
<div class="col-sm-2"></div>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<button type="submit" class="btn btn-primary mr-2" id="jsdisableUser" name="disableUser">'.$L->g('Disable user').'</button>
|
|
|
|
<button type="submit" class="btn btn-danger mr-2" id="jsdeleteUserAndKeepContent" name="deleteUserAndKeepContent">'.$L->g('Delete user and keep content').'</button>
|
|
|
|
<button type="submit" class="btn btn-danger mr-2" id="jsdeleteUserAndDeleteContent" name="deleteUserAndDeleteContent">'.$L->g('Delete user and delete content !!!').'</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
';
|
|
|
|
}
|
2015-12-28 23:28:42 +01:00
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formTitle(array('title'=>$L->g('Social Networks')));
|
|
|
|
|
|
|
|
echo Bootstrap::formInputText(array(
|
2016-02-14 01:15:19 +01:00
|
|
|
'name'=>'twitter',
|
|
|
|
'label'=>'Twitter',
|
2018-05-14 00:00:10 +02:00
|
|
|
'value'=>$user->twitter(),
|
|
|
|
'class'=>'',
|
2016-01-01 00:31:51 +01:00
|
|
|
'tip'=>''
|
|
|
|
));
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formInputText(array(
|
2016-02-14 01:15:19 +01:00
|
|
|
'name'=>'facebook',
|
|
|
|
'label'=>'Facebook',
|
2018-05-14 00:00:10 +02:00
|
|
|
'value'=>$user->facebook(),
|
|
|
|
'class'=>'',
|
2016-01-01 00:31:51 +01:00
|
|
|
'tip'=>''
|
|
|
|
));
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formInputText(array(
|
2017-09-29 23:02:05 +02:00
|
|
|
'name'=>'codepen',
|
|
|
|
'label'=>'Codepen',
|
2018-05-14 00:00:10 +02:00
|
|
|
'value'=>$user->codepen(),
|
|
|
|
'class'=>'',
|
2017-09-29 23:02:05 +02:00
|
|
|
'tip'=>''
|
|
|
|
));
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formInputText(array(
|
2016-02-14 01:15:19 +01:00
|
|
|
'name'=>'googlePlus',
|
|
|
|
'label'=>'Google+',
|
2018-05-14 00:00:10 +02:00
|
|
|
'value'=>$user->googlePlus(),
|
|
|
|
'class'=>'',
|
2016-01-01 00:31:51 +01:00
|
|
|
'tip'=>''
|
|
|
|
));
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formInputText(array(
|
2016-02-14 01:15:19 +01:00
|
|
|
'name'=>'instagram',
|
|
|
|
'label'=>'Instagram',
|
2018-05-14 00:00:10 +02:00
|
|
|
'value'=>$user->instagram(),
|
|
|
|
'class'=>'',
|
2015-12-28 23:28:42 +01:00
|
|
|
'tip'=>''
|
|
|
|
));
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo '
|
|
|
|
<div class="form-group mt-4">
|
|
|
|
<button type="submit" class="btn btn-primary mr-2" name="save">'.$L->g('Save').'</button>
|
|
|
|
<a class="btn btn-secondary" href="'.HTML_PATH_ADMIN_ROOT.'users" role="button">'.$L->g('Cancel').'</a>
|
|
|
|
</div>
|
|
|
|
';
|
2015-10-19 00:45:58 +02:00
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
echo Bootstrap::formClose();
|
2015-11-15 22:37:34 +01:00
|
|
|
|
2015-10-19 00:45:58 +02:00
|
|
|
?>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
$("#jsdeleteUserAndDeleteContent").click(function() {
|
2017-08-12 20:54:35 +02:00
|
|
|
if(confirm("<?php $Language->p('Confirm delete this action cannot be undone') ?>")==false) {
|
2015-10-19 00:45:58 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-05-14 00:00:10 +02:00
|
|
|
$("#jsdeleteUserAndKeepContent").click(function() {
|
2017-08-12 20:54:35 +02:00
|
|
|
if(confirm("<?php $Language->p('Confirm delete this action cannot be undone') ?>")==false) {
|
2015-10-19 00:45:58 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
2015-12-01 03:57:46 +01:00
|
|
|
</script>
|