raspisms/templates/scheduled/add.php

167 lines
5.7 KiB
PHP
Raw Normal View History

2019-10-29 14:57:13 +01:00
<?php
//Template dashboard
$this->render('incs/head', ['title' => 'Scheduleds - Add'])
?>
<div id="wrapper">
<?php
$this->render('incs/nav', ['page' => 'scheduleds'])
?>
<div id="page-wrapper">
<div class="container-fluid">
<!-- Page Heading -->
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">
Nouveau SMS programmé
</h1>
<ol class="breadcrumb">
<li>
<i class="fa fa-dashboard"></i> <a href="<?php echo \descartes\Router::url('Dashboard', 'show'); ?>">Dashboard</a>
2019-10-29 14:57:13 +01:00
</li>
<li>
2019-11-07 17:52:33 +01:00
<i class="fa fa-calendar"></i> <a href="<?php echo \descartes\Router::url('Scheduled', 'list'); ?>">Scheduleds</a>
2019-10-29 14:57:13 +01:00
</li>
<li class="active">
<i class="fa fa-plus"></i> Nouveau
</li>
</ol>
</div>
</div>
<!-- /.row -->
<div class="row">
<div class="col-lg-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-calendar fa-fw"></i> Ajout d'un SMS programmé</h3>
</div>
<div class="panel-body">
2019-11-07 17:52:33 +01:00
<form action="<?php echo \descartes\Router::url('Scheduled', 'create', ['csrf' => $_SESSION['csrf']]);?>" method="POST">
2019-10-29 14:57:13 +01:00
<div class="form-group">
<label>Texte du SMS</label>
<textarea name="text" class="form-control" required></textarea>
2019-10-29 14:57:13 +01:00
</div>
<div class="form-group">
<label>Date d'envoi du SMS</label>
<input name="at" class="form-control form-datetime" type="text" value="<?php $this->s($now); ?>" readonly>
2019-10-29 14:57:13 +01:00
</div>
<div class="form-group">
<label>Numéros cibles</label>
<div class="form-group scheduleds-number-groupe-container">
<div class="form-group scheduleds-number-groupe">
<input name="" class="form-control phone-international-input" type="tel" >
<span class="remove-scheduleds-number fa fa-times"></span>
</div>
<div class="add-number-button fa fa-plus-circle"></div>
</div>
</div>
<div class="form-group">
<label>Contacts cibles</label>
<input class="add-contacts form-control" name="contacts[]"/>
</div>
<div class="form-group">
<label>Groupes cibles</label>
2019-11-10 01:02:10 +01:00
<input class="add-groupes form-control" name="groups[]"/>
2019-10-29 14:57:13 +01:00
</div>
2019-11-11 04:05:26 +01:00
<?php if ($_SESSION['user']['settings']['sms_flash']) { ?>
2019-10-29 14:57:13 +01:00
<div class="form-group">
<label>Envoyer comme un SMS Flash : </label>
<div class="form-group">
2019-11-11 04:05:26 +01:00
<input name="flash" type="radio" value="1" required /> Oui
<input name="flash" type="radio" value="0" required checked/> Non
2019-10-29 14:57:13 +01:00
</div>
</div>
<?php } ?>
2019-11-07 17:52:33 +01:00
<a class="btn btn-danger" href="<?php echo \descartes\Router::url('Scheduled', 'list'); ?>">Annuler</a>
2019-10-29 14:57:13 +01:00
<input type="submit" class="btn btn-success" value="Enregistrer le SMS" />
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
jQuery(document).ready(function()
2019-11-10 15:47:28 +01:00
{
var number_inputs = [];
2019-10-29 14:57:13 +01:00
jQuery('.add-contacts').each(function()
{
jQuery(this).magicSuggest({
2019-11-07 17:52:33 +01:00
data: '<?php echo \descartes\Router::url('Contact', 'json_list'); ?>',
2019-10-29 14:57:13 +01:00
valueField: 'id',
displayField: 'name',
});
});
jQuery('.add-groupes').each(function()
{
jQuery(this).magicSuggest({
2019-11-09 03:35:12 +01:00
data: '<?php echo \descartes\Router::url('Group', 'json_list'); ?>',
2019-10-29 14:57:13 +01:00
valueField: 'id',
displayField: 'name',
});
});
2019-11-10 15:47:28 +01:00
jQuery('body').on('click', '.remove-scheduleds-number', function(e)
{
jQuery(this).parents('.scheduleds-number-groupe').remove();
2019-10-29 14:57:13 +01:00
});
2019-11-10 15:47:28 +01:00
jQuery('.form-datetime').datetimepicker(
2019-10-29 14:57:13 +01:00
{
2019-11-10 15:47:28 +01:00
format: 'yyyy-mm-dd hh:ii:ss',
autoclose: true,
minuteStep: 1,
language: 'fr'
2019-10-29 14:57:13 +01:00
});
2019-11-10 15:47:28 +01:00
//intlTelInput
2019-10-29 14:57:13 +01:00
jQuery('body').on('click', '.add-number-button', function(e)
{
var random_id = Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
2019-10-29 14:57:13 +01:00
var newScheduledsNumberGroupe = '' +
'<div class="form-group scheduleds-number-groupe">' +
'<input name="" class="form-control phone-international-input" type="tel" id="' + random_id + '">' +
2019-10-29 14:57:13 +01:00
'<span class="remove-scheduleds-number fa fa-times"></span>' +
'</div>';
jQuery(this).before(newScheduledsNumberGroupe);
var number_input = jQuery('#' + random_id)[0];
2019-11-10 15:47:28 +01:00
var iti_number_input = window.intlTelInput(number_input, {
hiddenInput: 'numbers[]',
2019-11-11 04:05:26 +01:00
defaultCountry: '<?php $this->s($_SESSION['user']['settings']['default_phone_country']); ?>',
preferredCountries: <?php $this->s(json_encode(explode(',', $_SESSION['user']['settings']['preferred_phone_country'])), false, false); ?>,
2019-10-29 14:57:13 +01:00
nationalMode: true,
2019-11-10 15:47:28 +01:00
utilsScript: '<?php echo HTTP_PWD_JS; ?>/intlTelInput/utils.js'
});
2019-10-29 14:57:13 +01:00
2019-11-10 15:47:28 +01:00
number_inputs.push({
'number_input': number_input,
'iti_number_input': iti_number_input,
});
});
2019-10-29 14:57:13 +01:00
2019-11-10 15:47:28 +01:00
var number_input = jQuery('.phone-international-input')[0];
var iti_number_input = window.intlTelInput(number_input, {
hiddenInput: 'numbers[]',
2019-11-11 04:05:26 +01:00
defaultCountry: '<?php $this->s($_SESSION['user']['settings']['default_phone_country']); ?>',
preferredCountries: <?php $this->s(json_encode(explode(',', $_SESSION['user']['settings']['preferred_phone_country'])), false, false); ?>,
2019-11-10 15:47:28 +01:00
nationalMode: true,
utilsScript: '<?php echo HTTP_PWD_JS; ?>/intlTelInput/utils.js'
2019-10-29 14:57:13 +01:00
});
2019-11-10 15:47:28 +01:00
number_inputs.push({
'number_input': number_input,
'iti_number_input': iti_number_input,
});
2019-10-29 14:57:13 +01:00
});
</script>
<?php
$this->render('incs/footer');