2019-10-29 14:57:13 +01:00
|
|
|
<?php
|
2019-12-04 03:04:45 +01:00
|
|
|
$this->render('incs/head', ['title' => 'Webhooks - Add'])
|
2019-10-29 14:57:13 +01:00
|
|
|
?>
|
|
|
|
<div id="wrapper">
|
|
|
|
<?php
|
2019-12-04 03:04:45 +01:00
|
|
|
$this->render('incs/nav', ['page' => 'webhooks'])
|
2019-10-29 14:57:13 +01:00
|
|
|
?>
|
|
|
|
<div id="page-wrapper">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<!-- Page Heading -->
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<h1 class="page-header">
|
|
|
|
Nouveau webhook
|
|
|
|
</h1>
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li>
|
2019-11-07 17:52:33 +01:00
|
|
|
<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-12-04 03:04:45 +01:00
|
|
|
<i class="fa fa-plug"></i> <a href="<?php echo \descartes\Router::url('Webhook', 'list'); ?>">Webhooks</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-plug fa-fw"></i> Ajout d'un nouveau webhook</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
2019-12-04 03:04:45 +01:00
|
|
|
<form action="<?php echo \descartes\Router::url('Webhook', 'create', ['csrf' => $_SESSION['csrf']]);?>" method="POST">
|
2019-10-29 14:57:13 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label>URL cible</label>
|
|
|
|
<div class="form-group">
|
2020-08-17 21:05:01 +02:00
|
|
|
<input name="url" class="form-control" type="text" placeholder="http://example.fr/webhook/" autofocus required value="<?php $this->s($_SESSION['previous_http_post']['url'] ?? '') ?>">
|
2019-10-29 14:57:13 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>Type de Webhook</label>
|
|
|
|
<select name="type" class="form-control" required>
|
2020-08-17 21:05:01 +02:00
|
|
|
<option value="receive_sms" <?= ($_SESSION['previous_http_post']['type'] ?? '') == 'receive_sms' ? 'selected' : '' ?>>Réception d'un SMS</option>
|
|
|
|
<option value="send_sms" <?= ($_SESSION['previous_http_post']['type'] ?? '') == 'send_sms' ? 'selected' : '' ?>>Envoi d'un SMS</option>
|
2021-03-23 04:31:13 +01:00
|
|
|
<option value="inbound_call" <?= ($_SESSION['previous_http_post']['type'] ?? '') == 'inbound_call' ? 'selected' : '' ?>>Réception d'un appel téléphonique</option>
|
2019-10-29 14:57:13 +01:00
|
|
|
</select>
|
|
|
|
</div>
|
2019-12-04 03:04:45 +01:00
|
|
|
<a class="btn btn-danger" href="<?php echo \descartes\Router::url('Webhook', 'list'); ?>">Annuler</a>
|
2019-10-29 14:57:13 +01:00
|
|
|
<input type="submit" class="btn btn-success" value="Enregistrer le webhook" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php
|
2019-12-04 03:04:45 +01:00
|
|
|
$this->render('incs/footer');
|