2016-04-04 09:47:17 +00:00
|
|
|
|
<?php define('__ROOT__', dirname(dirname(__FILE__)) );
|
|
|
|
|
require_once __ROOT__.'/manager/autoloader.php';
|
|
|
|
|
use \manager\ModuleRequest;
|
|
|
|
|
use \manager\ManagerError;
|
|
|
|
|
use \manager\ResourceDispatcher;
|
|
|
|
|
use \manager\Repo;
|
2016-04-22 08:27:58 +00:00
|
|
|
|
|
|
|
|
|
$somevariable = 'test';
|
2016-04-04 09:47:17 +00:00
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-04-17 10:34:24 +00:00
|
|
|
|
<?php /* [1] ADMIN -> Donnees de questionnaire
|
|
|
|
|
=========================================================*/
|
|
|
|
|
?><section data-sublink='survey'>
|
|
|
|
|
Questionnaire
|
|
|
|
|
</section>
|
2016-04-04 09:47:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-04-17 10:34:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php /* [2] ADMIN -> Donnees de Facebook
|
|
|
|
|
=========================================================*/
|
|
|
|
|
?><section data-sublink='facebook'>
|
|
|
|
|
Facebook
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php /* [3] ADMIN -> Donnees du Telephone
|
|
|
|
|
=========================================================*/
|
2016-04-20 13:21:01 +00:00
|
|
|
|
?><section data-sublink='phone'> <!-- IMPORT ou SAISIE -->
|
|
|
|
|
|
2016-04-20 14:57:59 +00:00
|
|
|
|
<section data-timeline>
|
2016-04-22 08:27:58 +00:00
|
|
|
|
<h3 data-n='1'>Identifier l'enquêté</h3>
|
|
|
|
|
<span data-space></span>
|
|
|
|
|
<h5 data-text="Renseigner au moins un des nominatifs pour chaque contact. (pseudo, prénom et/ou nom)"></h5>
|
|
|
|
|
<h4 data-icon='a' class='self'>
|
|
|
|
|
<input type='text' class='no-line' data-name='number' placeholder='Numéro de téléphone'>
|
|
|
|
|
<input type='text' class='no-line' data-name='username' placeholder='Pseudo'>
|
|
|
|
|
<input type='text' class='no-line' data-name='firstname' placeholder='Prénom'>
|
|
|
|
|
<input type='text' class='no-line' data-name='lastname' placeholder='Nom'>
|
|
|
|
|
<input type='submit' class='primary no-line sub-number' value='Enregistrer'>
|
|
|
|
|
</h4>
|
2016-04-21 14:41:11 +00:00
|
|
|
|
<span data-space></span>
|
2016-04-22 08:27:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<h3 data-n='2'>Importer un journal d'appel</h3>
|
2016-04-21 09:26:21 +00:00
|
|
|
|
<span data-space></span>
|
2016-04-21 08:33:03 +00:00
|
|
|
|
<h4 data-icon='u'>
|
2016-04-21 09:26:21 +00:00
|
|
|
|
<input class='no-line' type='file' id='call_log-import' value='test'>
|
2016-04-21 08:33:03 +00:00
|
|
|
|
<span class='no-line file-input'>Importer un journal d'appels</span>
|
|
|
|
|
</h4>
|
2016-04-21 09:26:21 +00:00
|
|
|
|
<span data-space></span>
|
|
|
|
|
<!-- <span data-tag='OU'></span> -->
|
2016-04-22 08:27:58 +00:00
|
|
|
|
<h3 data-n='2'>Saisir manuellement les contacts</h3>
|
2016-04-21 14:41:11 +00:00
|
|
|
|
|
|
|
|
|
<!-- GESTION DE L'AJOUT DES CONTACTS -->
|
|
|
|
|
<article class='contact-panel'>
|
2016-04-21 09:26:21 +00:00
|
|
|
|
<span data-space></span>
|
|
|
|
|
<h5 data-text="Renseigner au moins un des nominatifs pour chaque contact. (pseudo, prénom et/ou nom)"></h5>
|
|
|
|
|
<h4 data-icon='p' class='new-contact'>
|
2016-04-21 15:14:50 +00:00
|
|
|
|
<input type='text' class='no-line' data-name='number' placeholder='Numéro de téléphone'>
|
2016-04-21 13:22:43 +00:00
|
|
|
|
<input type='text' class='no-line' data-name='username' placeholder='Pseudo'>
|
|
|
|
|
<input type='text' class='no-line' data-name='firstname' placeholder='Prénom'>
|
|
|
|
|
<input type='text' class='no-line' data-name='lastname' placeholder='Nom'>
|
2016-04-22 08:27:58 +00:00
|
|
|
|
<input type='submit' class='primary no-line sub-number' value='Enregistrer'>
|
2016-04-21 09:26:21 +00:00
|
|
|
|
</h4>
|
2016-04-21 14:41:11 +00:00
|
|
|
|
<h4 data-icon='+' class='add-contact' style='cursor: pointer;'>Ajouter un contact</h4>
|
2016-04-21 09:26:21 +00:00
|
|
|
|
<!-- <span data-tag='ET'></span> -->
|
2016-04-21 14:41:11 +00:00
|
|
|
|
|
|
|
|
|
</article>
|
|
|
|
|
|
2016-04-21 15:14:50 +00:00
|
|
|
|
<span data-space></span>
|
2016-04-21 09:46:24 +00:00
|
|
|
|
<h3 data-n='3'>Remplir les fiches relations des contacts</h3>
|
2016-04-21 15:14:50 +00:00
|
|
|
|
|
|
|
|
|
<!-- GESTION DES FICHES RELATIONS -->
|
|
|
|
|
<article class='relation-panel'>
|
|
|
|
|
<span data-space></span>
|
2016-04-22 08:27:58 +00:00
|
|
|
|
<h4 data-icon='o' class='fiche-relation nobold'>
|
|
|
|
|
<input type='radio' class='no-line spacebtm' name='sexe' checked data-name='sexe' id='sexeH_0'><label class='no-line' for='sexeH_0'>Homme</label>
|
|
|
|
|
   <input type='radio' class='no-line btm' name='sexe' data-name='sexe' id='sexeF_0'><label class='no-line' for='sexeF_0'>Femme</label><br>
|
|
|
|
|
|
|
|
|
|
<input type='text' class='no-line spaced' data-name='age' placeholder='Age'><br>
|
|
|
|
|
|
|
|
|
|
<select class='no-line spacebtm' data-name='job'>
|
|
|
|
|
<option class='no-line' value='.'>Dernière profession exercée:</option>
|
|
|
|
|
<option class='no-line' value='.'>----------------------------</option>
|
|
|
|
|
<option class='no-line' value='0'>Métier 1</option>
|
|
|
|
|
<option class='no-line' value='1'>Métier 2</option>
|
|
|
|
|
<option class='no-line' value='2'>Métier 3</option>
|
|
|
|
|
<option class='no-line' value='3'>Métier 4</option>
|
|
|
|
|
</select><br>
|
|
|
|
|
|
|
|
|
|
Situation familiale:<br>
|
|
|
|
|
   <input type='radio' class='no-line spaced' checked name='famsit' data-name='famsit' id='famsitA_0'><label class='no-line' for='famsitA_0'>Seul</label><br>
|
|
|
|
|
   <input type='radio' class='no-line spaced' name='famsit' data-name='famsit' id='famsitB_0'><label class='no-line' for='famsitB_0'>En couple sans enfants</label><br>
|
|
|
|
|
   <input type='radio' class='no-line spaced' name='famsit' data-name='famsit' id='famsitC_0'><label class='no-line' for='famsitC_0'>En couple avec enfants</label><br>
|
|
|
|
|
|
|
|
|
|
<select class='no-line spaced' data-name='studies'>
|
|
|
|
|
<option class='no-line' value='.'>Niveau d'études maximal:</option>
|
|
|
|
|
<option class='no-line' value='.'>----------------------------</option>
|
|
|
|
|
<option class='no-line' value='0'>Parcours 1</option>
|
|
|
|
|
<option class='no-line' value='1'>Parcours 2</option>
|
|
|
|
|
<option class='no-line' value='2'>Parcours 3</option>
|
|
|
|
|
<option class='no-line' value='3'>Parcours 4</option>
|
|
|
|
|
</select><br>
|
|
|
|
|
|
|
|
|
|
<select class='no-line spacebtm' data-name='relation'>
|
|
|
|
|
<option class='no-line' value='.'>Type de relation:</option>
|
|
|
|
|
<option class='no-line' value='.'>----------------------------</option>
|
|
|
|
|
<option class='no-line' value='0'>Relation 1</option>
|
|
|
|
|
<option class='no-line' value='1'>Relation 2</option>
|
|
|
|
|
<option class='no-line' value='2'>Relation 3</option>
|
|
|
|
|
<option class='no-line' value='3'>Relation 4</option>
|
|
|
|
|
</select><br>
|
|
|
|
|
|
|
|
|
|
Où habite t-elle/il ?<br>
|
|
|
|
|
   <input type='radio' class='no-line spaced' checked name='loc' data-name='loc' id='locA_0'><label class='no-line' for='locA_0'>- de 5 minutes</label><br>
|
|
|
|
|
   <input type='radio' class='no-line spaced' name='loc' data-name='loc' id='locB_0'><label class='no-line' for='locB_0'>de 5 à 15 minutes</label><br>
|
|
|
|
|
   <input type='radio' class='no-line spaced' name='loc' data-name='loc' id='locC_0'><label class='no-line' for='locC_0'>de 15 à 60 minutes</label><br>
|
|
|
|
|
   <input type='radio' class='no-line spaced' name='loc' data-name='loc' id='locD_0'><label class='no-line' for='locD_0'>+ d'une heure</label><br>
|
|
|
|
|
|
|
|
|
|
<div class='no-line spacetop'>Depuis quand connaissez-vous cette personne ?</div><br>
|
|
|
|
|
<input type='text' class='no-line spaced' data-name='duration' placeholder='Nombre de mois'>
|
|
|
|
|
|
|
|
|
|
|
2016-04-21 15:14:50 +00:00
|
|
|
|
</h4>
|
|
|
|
|
<!-- <span data-tag='ET'></span> -->
|
|
|
|
|
|
|
|
|
|
</article>
|
2016-04-21 14:41:11 +00:00
|
|
|
|
<span data-space></span>
|
2016-04-20 14:57:59 +00:00
|
|
|
|
</section>
|
2016-04-20 09:59:21 +00:00
|
|
|
|
|
2016-04-17 10:34:24 +00:00
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php /* [4] ADMIN -> Donnees de Messenger
|
|
|
|
|
=========================================================*/
|
|
|
|
|
?><section data-sublink='messenger'>
|
|
|
|
|
Messenger
|
|
|
|
|
</section>
|