2015-02-17 16:17:38 +01:00
|
|
|
<?php
|
|
|
|
//Template dashboard
|
|
|
|
$incs = new internalIncs();
|
|
|
|
$incs->head('Scheduleds - Edit');
|
|
|
|
?>
|
|
|
|
<div id="wrapper">
|
|
|
|
<?php
|
|
|
|
$incs->nav('scheduleds');
|
|
|
|
?>
|
|
|
|
<div id="page-wrapper">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<!-- Page Heading -->
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<h1 class="page-header">
|
|
|
|
Modifier SMS programmés
|
|
|
|
</h1>
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li>
|
|
|
|
<i class="fa fa-dashboard"></i> <a href="<?php echo $this->generateUrl('dashboard'); ?>">Dashboard</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<i class="fa fa-calendar"></i> <a href="<?php echo $this->generateUrl('scheduleds'); ?>">Scheduleds</a>
|
|
|
|
</li>
|
|
|
|
<li class="active">
|
|
|
|
<i class="fa fa-edit"></i> Modifier
|
|
|
|
</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-edit fa-fw"></i> Modification des SMS programmés</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
2015-08-09 18:11:59 +02:00
|
|
|
<form action="<?php echo $this->generateUrl('scheduleds', 'update', [$_SESSION['csrf']]);?>" method="POST">
|
2015-02-17 16:17:38 +01:00
|
|
|
<?php
|
|
|
|
foreach ($scheduleds as $scheduled)
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>Texte du SMS</label>
|
|
|
|
<textarea name="scheduleds[<?php secho($scheduled['id']); ?>][content]" class="form-control" required><?php secho($scheduled['content'], true); ?></textarea>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2015-04-27 23:09:42 +02:00
|
|
|
<label>Date d'envoi du SMS</label>
|
2015-02-17 16:17:38 +01:00
|
|
|
<input name="scheduleds[<?php secho($scheduled['id']); ?>][date]" class="form-control form-datetime" type="text" value="<?php secho($scheduled['at']); ?>" readonly>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2015-09-28 19:45:55 +02:00
|
|
|
<label>Numéros cibles</label>
|
|
|
|
<div class="form-group scheduleds-number-group-container" scheduled-id="<?php secho($scheduled['id']); ?>" >
|
|
|
|
<?php foreach($scheduled['numbers'] as $number) { ?>
|
|
|
|
<div class="form-group scheduleds-number-group">
|
|
|
|
<input name="" class="form-control phone-international-input" type="tel" value="<?php secho($number); ?>">
|
|
|
|
<span class="remove-scheduleds-number fa fa-times"></span>
|
|
|
|
<input name="scheduleds[<?php secho($scheduled['id']); ?>][numbers][]" type="hidden" class="phone-hidden-input">
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
<div class="add-number-button fa fa-plus-circle"></div>
|
|
|
|
</div>
|
2015-02-17 16:17:38 +01:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>Contacts cibles</label>
|
2015-09-28 19:45:55 +02:00
|
|
|
<input class="add-contacts form-control" name="scheduleds[<?php secho($scheduled['id']); ?>][contacts][]" value="<?php secho(json_encode($scheduled['contacts'])); ?>" />
|
2015-02-17 16:17:38 +01:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>Groupes cibles</label>
|
2015-09-28 19:45:55 +02:00
|
|
|
<input class="add-groups form-control" name="scheduleds[<?php secho($scheduled['id']); ?>][groups][]" value="<?php secho(json_encode($scheduled['groups'])); ?>" />
|
2015-02-17 16:17:38 +01:00
|
|
|
</div>
|
|
|
|
<hr/>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<a class="btn btn-danger" href="<?php echo $this->generateUrl('scheduleds'); ?>">Annuler</a>
|
|
|
|
<input type="submit" class="btn btn-success" value="Enregistrer le SMS" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
|
|
|
jQuery('.form-datetime').datetimepicker(
|
|
|
|
{
|
2015-08-17 02:30:09 +02:00
|
|
|
format: 'yyyy-mm-dd hh:ii:ss',
|
2015-02-17 16:17:38 +01:00
|
|
|
autoclose: true,
|
|
|
|
minuteStep: 1,
|
|
|
|
language: 'fr'
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery('.add-contacts').each(function()
|
|
|
|
{
|
|
|
|
jQuery(this).magicSuggest({
|
|
|
|
data: '<?php echo $this->generateUrl('contacts', 'jsonGetContacts'); ?>',
|
|
|
|
valueField: 'id',
|
|
|
|
displayField: 'name',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery('.add-groups').each(function()
|
|
|
|
{
|
|
|
|
jQuery(this).magicSuggest({
|
|
|
|
data: '<?php echo $this->generateUrl('groups', 'jsonGetGroups'); ?>',
|
|
|
|
valueField: 'id',
|
|
|
|
displayField: 'name',
|
|
|
|
});
|
|
|
|
});
|
2015-09-28 19:45:55 +02:00
|
|
|
|
|
|
|
jQuery('.phone-international-input').intlTelInput({
|
|
|
|
defaultCountry: 'fr',
|
|
|
|
preferredCountries: ['fr', 'be', 'ca'],
|
|
|
|
nationalMode: true,
|
|
|
|
utilsScript: '<?php echo HTTP_PWD; ?>/js/intlTelInput/lib/libphonenumber/utils.js'
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery('body').on('click', '.remove-scheduleds-number', function(e)
|
|
|
|
{
|
|
|
|
jQuery(this).parents('.scheduleds-number-group').remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery('body').on('click', '.add-number-button', function(e)
|
|
|
|
{
|
|
|
|
var scheduledId = jQuery(this).parents('.scheduleds-number-group-container').attr('scheduled-id');
|
|
|
|
var newScheduledsNumberGroup = '' +
|
|
|
|
'<div class="form-group scheduleds-number-group">' +
|
|
|
|
'<input name="" class="form-control phone-international-input" type="tel" >' +
|
|
|
|
'<span class="remove-scheduleds-number fa fa-times"></span>' +
|
|
|
|
'<input name="scheduleds[' + scheduledId + '][numbers][]" type="hidden" class="phone-hidden-input">' +
|
|
|
|
'</div>';
|
|
|
|
|
|
|
|
jQuery(this).before(newScheduledsNumberGroup);
|
|
|
|
|
|
|
|
jQuery('.phone-international-input').intlTelInput({
|
|
|
|
defaultCountry: 'fr',
|
|
|
|
preferredCountries: ['fr', 'be', 'ca'],
|
|
|
|
nationalMode: true,
|
|
|
|
utilsScript: '<?php echo HTTP_PWD; ?>/js/intlTelInput/lib/libphonenumber/utils.js'
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery('.form-datetime').datetimepicker(
|
|
|
|
{
|
|
|
|
format: 'yyyy-mm-dd hh:ii:ss',
|
|
|
|
autoclose: true,
|
|
|
|
minuteStep: 1,
|
|
|
|
language: 'fr'
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
jQuery('form').on('submit', function(e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
jQuery('.phone-international-input').each(function(key, value)
|
|
|
|
{
|
|
|
|
var container = jQuery(this).parents('.scheduleds-number-group');
|
|
|
|
container.find('.phone-hidden-input').val(jQuery(this).intlTelInput("getNumber"));
|
|
|
|
});
|
|
|
|
|
|
|
|
this.submit();
|
|
|
|
});
|
2015-02-17 16:17:38 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
$incs->footer();
|