2019-10-29 14:57:13 +01:00
< ? php
//Template dashboard
$this -> render ( 'incs/head' , [ 'title' => 'Contacts - Show All' ])
?>
< div id = " wrapper " >
< ? php
$this -> render ( 'incs/nav' , [ 'page' => 'contacts' ])
?>
< div id = " page-wrapper " >
< div class = " container-fluid " >
<!-- Page Heading -->
< div class = " row " >
< div class = " col-lg-12 " >
< h1 class = " page-header " >
Nouveau contact
</ h1 >
< ol class = " breadcrumb " >
< li >
2019-11-07 17:52:33 +01:00
< i class = " fa fa-dashboard " ></ i > < a href = " <?php echo \ descartes \R outer::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-user " ></ i > < a href = " <?php echo \ descartes \R outer::url('Contact', 'list'); ?> " > Contacts </ 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-user fa-fw " ></ i > Ajout d ' un contact </ h3 >
</ div >
< div class = " panel-body " >
2019-11-07 17:52:33 +01:00
< form action = " <?php echo \ descartes \R outer::url('Contact', 'create', ['csrf' => $_SESSION['csrf'] ]);?> " method = " POST " >
2019-10-29 14:57:13 +01:00
< div class = " form-group " >
< label > Nom contact </ label >
< div class = " form-group input-group " >
< span class = " input-group-addon " >< span class = " fa fa-user " ></ span ></ span >
2020-08-17 21:05:01 +02:00
< input name = " name " class = " form-control " type = " text " placeholder = " Nom contact " autofocus required value = " <?php $this->s ( $_SESSION['previous_http_post'] ['name'] ?? '') ?> " >
2019-10-29 14:57:13 +01:00
</ div >
</ div >
< div class = " form-group " >
< label > Numéro de téléphone du contact </ label >
< div class = " form-group " >
2020-08-17 21:05:01 +02:00
< input name = " " class = " form-control " type = " tel " id = " phone-international-input " value = " <?php $this->s ( $_SESSION['previous_http_post'] ['number'] ?? '') ?> " >
2019-10-29 14:57:13 +01:00
</ div >
2020-08-17 21:05:01 +02:00
</ div >
2019-11-18 19:31:15 +01:00
< div class = " form-group " >
< label > Données du contact </ label >
2021-01-17 03:16:57 +01:00
< p class = " italic small help " id = " description-data " >
2019-11-18 19:31:15 +01:00
Les données d 'un contact vous permettent de l' enrichir afin de pouvoir accéder à ces données au sein d 'un message via <a href="#">l' utilisation de templates .</ a >< br />
2019-11-20 02:45:00 +01:00
Laissez vide si vous ne souhaitez pas renseigner d ' informations supplémentaires pour le contact . Utilisez uniquement des lettres , des chiffres et des underscore pour les noms de données , ni espace ni caractères spéciaux .
2019-11-18 19:31:15 +01:00
</ p >
2021-01-17 03:16:57 +01:00
< div class = " contact-data-container " >
< ? php foreach ( $_SESSION [ 'previous_http_post' ][ 'data' ] ? ? [] as $key => $value ) { ?>
2020-08-17 21:05:01 +02:00
< ? php if ( $value == null ) { continue ; } ?>
< div class = " form-group " >
2022-03-15 02:24:28 +01:00
< input name = " " class = " form-control contact-data-name " type = " text " placeholder = " Nom de la donnée " pattern = " [a-zA-Z0-9_]* " value = " <?php $this->s ( $key ) ?> " >
2020-08-17 21:05:01 +02:00
:
< input name = " " class = " form-control contact-data-value " type = " text " placeholder = " Valeur de la donnée " value = " <?php $this->s ( $value ) ?> " >
2021-01-17 03:16:57 +01:00
< a href = " # " class = " contact-data-remove " >< span class = " fa fa-times " ></ span ></ a >
2020-08-17 21:05:01 +02:00
</ div >
< ? php } ?>
2019-11-18 19:31:15 +01:00
< div class = " form-group " >
2019-11-20 02:45:00 +01:00
< input name = " " class = " form-control contact-data-name " type = " text " placeholder = " Nom de la donnée " pattern = " [a-zA-Z0-9_]* " >
2019-11-18 19:31:15 +01:00
:
< input name = " " class = " form-control contact-data-value " type = " text " placeholder = " Valeur de la donnée " >
</ div >
</ div >
</ div >
2019-11-07 17:52:33 +01:00
< a class = " btn btn-danger " href = " <?php echo \ descartes \R outer::url('Contact', 'list'); ?> " > Annuler </ a >
2019-10-29 14:57:13 +01:00
< input type = " submit " class = " btn btn-success " value = " Enregistrer le contact " />
</ form >
</ div >
</ div >
</ div >
</ div >
</ div >
</ div >
</ div >
< script >
jQuery ( 'document' ) . ready ( function ( $ )
2019-11-10 00:27:42 +01:00
{
var number_input = jQuery ( '#phone-international-input' )[ 0 ];
var iti_number_input = window . intlTelInput ( number_input , {
2019-11-10 16:53:47 +01:00
hiddenInput : 'number' ,
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-12-04 03:04:45 +01:00
nationalMode : true ,
< ? php if ( $_SESSION [ 'user' ][ 'settings' ][ 'authorized_phone_country' ] ? ? false ) { ?>
onlyCountries : < ? php $this -> s ( json_encode ( explode ( ',' , $_SESSION [ 'user' ][ 'settings' ][ 'authorized_phone_country' ])), false , false ); ?> ,
< ? php } ?>
2019-11-10 00:27:42 +01:00
utilsScript : '<?php echo HTTP_PWD_JS; ?>/intlTelInput/utils.js'
});
2019-11-18 19:31:15 +01:00
2021-01-17 03:16:57 +01:00
jQuery ( '.contact-data-container' ) . on ( 'input' , '.contact-data-value, .contact-data-name' , function ( e )
2019-11-18 19:31:15 +01:00
{
2019-11-20 02:45:00 +01:00
var focus_group = jQuery ( this ) . parent ( '.form-group' );
2019-11-18 19:31:15 +01:00
var focus_input = this ;
2019-11-20 02:45:00 +01:00
var input_name = focus_group . find ( '.contact-data-name' );
var input_value = focus_group . find ( '.contact-data-value' );
2019-11-18 19:31:15 +01:00
2021-01-17 03:16:57 +01:00
jQuery ( '.contact-data-container .form-group' ) . each ( function ( e )
2019-11-18 19:31:15 +01:00
{
var current_input_name = jQuery ( this ) . find ( '.contact-data-name' );
var current_input_value = jQuery ( this ) . find ( '.contact-data-value' );
2019-11-20 02:45:00 +01:00
if ( current_input_value . is ( focus_input ) || current_input_name . is ( focus_input ))
2019-11-18 19:31:15 +01:00
{
return true ;
}
2019-11-20 02:45:00 +01:00
if ( jQuery ( current_input_name ) . val () === '' && jQuery ( current_input_value ) . val () === '' )
2019-11-18 19:31:15 +01:00
{
2019-11-20 02:45:00 +01:00
jQuery ( this ) . remove ();
2019-11-18 19:31:15 +01:00
}
2019-11-20 02:45:00 +01:00
return true ;
2019-11-18 19:31:15 +01:00
});
2019-11-20 02:45:00 +01:00
if ( input_name . val () === '' || input_value . val () === '' )
2019-11-18 19:31:15 +01:00
{
return true ;
}
var template = '' +
'<div class="form-group">' +
2019-11-20 02:45:00 +01:00
'<input name="" class="form-control contact-data-name" type="text" placeholder="Nom de la donnée" pattern="[a-zA-Z0-9_]*">' +
2019-11-18 19:31:15 +01:00
' : ' +
'<input name="" class="form-control contact-data-value" type="text" placeholder="Valeur de la donnée">' +
2022-03-15 02:24:28 +01:00
' <a href="#" class="contact-data-remove"><span class="fa fa-times"></span></a>' +
2019-11-18 19:31:15 +01:00
'</div>' ;
2021-01-17 03:16:57 +01:00
jQuery ( '.contact-data-container' ) . append ( template );
2019-11-20 02:45:00 +01:00
});
2021-01-17 03:16:57 +01:00
jQuery ( '.contact-data-container' ) . on ( 'click' , '.contact-data-remove' , function ( e )
2019-11-20 02:45:00 +01:00
{
e . preventDefault ();
2021-01-17 03:16:57 +01:00
if ( jQuery ( '.contact-data-container .form-group' ) . length > 1 )
2019-11-20 02:45:00 +01:00
{
jQuery ( this ) . parent ( '.form-group' ) . remove ();
}
return false ;
});
jQuery ( 'form' ) . on ( 'submit' , function ( e )
{
e . preventDefault ();
2021-01-17 03:16:57 +01:00
jQuery ( '.contact-data-container .form-group' ) . each ( function ()
2019-11-20 02:45:00 +01:00
{
var name = jQuery ( this ) . find ( '.contact-data-name' ) . val ();
name = name . replace ( / \W / g , '' );
2021-01-17 03:16:57 +01:00
name = 'data[' + name + ']' ;
2019-11-20 02:45:00 +01:00
jQuery ( this ) . find ( '.contact-data-value' ) . attr ( 'name' , name );
});
e . currentTarget . submit ();
2019-11-18 19:31:15 +01:00
});
2019-10-29 14:57:13 +01:00
});
</ script >
< ? php
$this -> render ( 'incs/footer' );