Revert "Merge branch 'master' of https://github.com/devcode-it/openstamanager"
This reverts commit0ade18167a
, reversing changes made to72171f24b9
.
This commit is contained in:
parent
791d1431f4
commit
eca64a10d4
|
@ -149,17 +149,6 @@ switch (filter('op')) {
|
|||
|
||||
// Elimina utente + disattivazione token
|
||||
case 'delete_user':
|
||||
|
||||
$utente = User::find($id_utente);
|
||||
|
||||
/* Controlla che non posso auto eliminarmi */
|
||||
if (Auth::user()->id != $utente->id) {
|
||||
|
||||
/* Controlla che l'utente che voglio eliminare non presenti logs associati */
|
||||
if (count($utente->logs)>0){
|
||||
|
||||
if ($dbo->query('DELETE FROM zz_users WHERE id='.prepare($id_utente))) {
|
||||
flash()->info(tr('Utente eliminato!'));
|
||||
$utente = User::find($id_utente);
|
||||
|
||||
/* Controlla che non posso auto eliminarmi */
|
||||
|
@ -178,31 +167,6 @@ switch (filter('op')) {
|
|||
}
|
||||
else {
|
||||
flash()->error(tr('L\'utente _USER_ presenta dei log attivi. Impossibile eliminare utente.', ['_USER_' => $utente->username]));
|
||||
|
||||
$dbo->update('zz_users', [
|
||||
'enabled' => 0,
|
||||
], ['id' => $id_utente]);
|
||||
|
||||
|
||||
flash()->info(tr('Utente disabilitato!'));
|
||||
|
||||
if ($dbo->query('DELETE FROM zz_tokens WHERE id_utente='.prepare($id_utente))) {
|
||||
flash()->info(tr('Token eliminato!'));
|
||||
} flash()->info(tr('Token eliminato!'));
|
||||
}
|
||||
|
||||
}else{
|
||||
flash()->error(tr('L\'utente _USER_ è l\'utente attuale. Impossibile eliminare utente.', ['_USER_' => $utente->username]));
|
||||
}
|
||||
|
||||
|
||||
if ($dbo->query('DELETE FROM zz_tokens WHERE id_utente='.prepare($id_utente))) {
|
||||
flash()->info(tr('Token eliminato!'));
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
flash()->error(tr('L\'utente _USER_ presenta dei log attivi. Impossibile eliminare utente.', ['_USER_' => $utente->username]));
|
||||
|
||||
$dbo->update('zz_users', [
|
||||
'enabled' => 0,
|
||||
|
|
|
@ -49,13 +49,6 @@ class OperationLog extends Model
|
|||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Build a new model instance and save it to the database.
|
||||
*
|
||||
* @param mixed $operation
|
||||
* @return static|null
|
||||
*/
|
||||
|
||||
public static function build($operation)
|
||||
{
|
||||
if (!\Auth::check()) {
|
||||
|
|
Loading…
Reference in New Issue