extend suppression of smsstops to all users
This commit is contained in:
parent
b5d1483048
commit
fadffdab10
|
@ -74,13 +74,6 @@ namespace controllers\publics;
|
||||||
return $this->redirect(\descartes\Router::url('SmsStop', 'list'));
|
return $this->redirect(\descartes\Router::url('SmsStop', 'list'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!\controllers\internals\Tool::is_admin())
|
|
||||||
{
|
|
||||||
\FlashMessage\FlashMessage::push('danger', 'Vous devez être administrateur pour pouvoir supprimer un "STOP Sms" !');
|
|
||||||
|
|
||||||
return $this->redirect(\descartes\Router::url('SmsStop', 'list'));
|
|
||||||
}
|
|
||||||
|
|
||||||
$ids = $_GET['ids'] ?? [];
|
$ids = $_GET['ids'] ?? [];
|
||||||
foreach ($ids as $id)
|
foreach ($ids as $id)
|
||||||
{
|
{
|
||||||
|
|
|
@ -40,9 +40,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Numéro</th>
|
<th>Numéro</th>
|
||||||
<?php if ($_SESSION['user']['admin'] ?? false) { ?>
|
<th class="checkcolumn"><input type="checkbox" id="check-all"/></th>
|
||||||
<th class="checkcolumn"><input type="checkbox" id="check-all"/></th>
|
|
||||||
<?php } ?>
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -50,12 +48,10 @@
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<?php if ($_SESSION['user']['admin'] ?? false) { ?>
|
<div class="text-right col-xs-12 no-padding">
|
||||||
<div class="text-right col-xs-12 no-padding">
|
<strong>Action pour la séléction :</strong>
|
||||||
<strong>Action pour la séléction :</strong>
|
<button class="btn btn-default btn-confirm" type="submit" formaction="<?php echo \descartes\Router::url('SmsStop', 'delete', ['csrf' => $_SESSION['csrf']]); ?>"><span class="fa fa-trash-o"></span> Supprimer</button>
|
||||||
<button class="btn btn-default btn-confirm" type="submit" formaction="<?php echo \descartes\Router::url('SmsStop', 'delete', ['csrf' => $_SESSION['csrf']]); ?>"><span class="fa fa-trash-o"></span> Supprimer</button>
|
</div>
|
||||||
</div>
|
|
||||||
<?php } ?>
|
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
@ -87,14 +83,12 @@ jQuery(document).ready(function ()
|
||||||
{
|
{
|
||||||
data: 'number_formatted',
|
data: 'number_formatted',
|
||||||
}
|
}
|
||||||
<?php if ($_SESSION['user']['admin'] ?? false) { ?>
|
|
||||||
,{
|
,{
|
||||||
data: 'id',
|
data: 'id',
|
||||||
render: function (data, type, row, meta) {
|
render: function (data, type, row, meta) {
|
||||||
return '<input name="ids[]" type="checkbox" value="' + data + '">';
|
return '<input name="ids[]" type="checkbox" value="' + data + '">';
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
<?php } ?>
|
|
||||||
],
|
],
|
||||||
"deferRender": true
|
"deferRender": true
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue