280 lines
7.9 KiB
PHP
280 lines
7.9 KiB
PHP
<?php define('__ROOT__', dirname(dirname(dirname(__FILE__))) );
|
|
|
|
require_once __ROOT__.'/autoloader.php';
|
|
use \api\core\ModuleRequest;
|
|
use \manager\ManagerError;
|
|
use \database\core\Repo;
|
|
debug();
|
|
?>
|
|
|
|
|
|
|
|
<?php /* [1] ADMIN -> Donnees de questionnaire
|
|
=========================================================*/
|
|
?><section data-sublink='survey'>
|
|
|
|
<h6>Rechercher l'identifiant d'un sujet</h6><br>
|
|
|
|
<!-- CHAMPS DE RECHERCHE -->
|
|
<input type='text' id='search-field' placeholder='Recherche de sujet' data-name='search_subject'>
|
|
<input type='button' id='search-subject' class='primary' value='Rechercher'><br><br>
|
|
|
|
|
|
|
|
<!-- RESULTATS DE LA RECHERCHE -->
|
|
<section data-panel-list>
|
|
<!-- Header -->
|
|
<div data-header>
|
|
<span>Recherche de sujets</span>
|
|
</div>
|
|
|
|
<!-- Description des résultats actifs -->
|
|
<div data-description>Liste des sujets classés par noms. Leurs identifiants sont indiqués dans les encadrés.</div>
|
|
|
|
<!-- Conteneur de la liste des elements -->
|
|
<ul data-list></ul>
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<?php /* [3] ADMIN -> Donnees du Telephone
|
|
=========================================================*/
|
|
|
|
/* (1) On récupére la liste de tous les sujets */
|
|
$getAll = new ModuleRequest('subject/getAll', []);
|
|
$getAllR = $getAll->dispatch();
|
|
|
|
$allSub = [];
|
|
if( $getAllR->error == ManagerError::Success )
|
|
$allSub = $getAllR->get('subjects');
|
|
|
|
?><section data-sublink='phone'> <!-- IMPORT ou SAISIE -->
|
|
|
|
<section data-timeline>
|
|
|
|
<h3 data-n='0' class='color4'>Effacer les données de la dernière enquête</h3>
|
|
<span data-space></span>
|
|
<h4 class='self color2' data-icon=''>
|
|
<a style='display:none' id='p_download-target'></a>
|
|
<input type='submit' class='primary' id='p_export-all' value="Sauvegarder l'enquête"><br>
|
|
</h4>
|
|
|
|
<h4 class='self color2' data-icon='u'>
|
|
<input type='file' id='p_local-upload' style='display: none;'>
|
|
<input type='submit' class='primary' id='p_import-all' value='Récupérer une sauvegarde'><br>
|
|
</h4>
|
|
|
|
<h4 class='self color2' data-icon='w'>
|
|
<input type='submit' class='primary' id='p_clear-all' value='Tout effacer'>
|
|
</h4>
|
|
<span data-space></span>
|
|
|
|
|
|
|
|
<h3 data-n='1' class='color4'>Identifier l'enquêté</h3>
|
|
<article class='subject-panel'>
|
|
<h4 class='self color2' data-icon='a'>
|
|
<!-- <input type='hidden' data-name='tmp_id' value=''> -->
|
|
|
|
<span class='select-container nobold'><select data-name='subject_id'>
|
|
<option value='.' disabled selected>Identifiant</option>
|
|
<?php foreach($allSub as $id=>$data)
|
|
// if( !isset($data['phone']) ) // Si aucune donnée pour phone
|
|
echo "<option value='$id'>".$data['name']." [$id]</option>";
|
|
?>
|
|
</select></span>
|
|
|
|
<input type='submit' class='primary' data-name='submit' id='store_p_subject' data-store value='Enregistrer'>
|
|
</h4>
|
|
</article>
|
|
|
|
|
|
<!-- <h3 data-n='2' class='color4'>Importer un journal d'appel</h3>
|
|
<span data-space></span>
|
|
<h5 data-text="Seuls les fichiers au format XML et spécifiques sont pris en compte."></h5>
|
|
<h4 data-icon='u' class='color2'>
|
|
<input type='file' id='p_call_log-import'>
|
|
<span class='file-input'>Importer un journal d'appels</span>
|
|
</h4> -->
|
|
<!-- <span data-space></span> -->
|
|
<!-- <span data-tag='OU'></span> -->
|
|
<h3 data-n='2' class='color4'>Saisir manuellement les contacts</h3>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- GESTION DE L'AJOUT DES CONTACTS -->
|
|
<span data-space></span>
|
|
<h5 data-text="Renseigner au moins un des nominatifs pour chaque amis. (pseudo, prénom et/ou nom)"></h5>
|
|
<div class='arrow-container line' id='p_nav-contact'></div>
|
|
|
|
<article class='contact-panel'></article>
|
|
<span data-space></span>
|
|
|
|
|
|
|
|
|
|
<!-- GESTION DES MINI-FICHES RELATIONS -->
|
|
<h3 data-n='3' class='color4'>Remplir les fiches relations rapides pour tous les contacts</h3>
|
|
<!-- NAVIGATION ENTRE LES FICHES -->
|
|
<span data-space></span>
|
|
<div class='arrow-container line' id='p_nav-mini'></div>
|
|
|
|
<article class='mini-relation-panel'>
|
|
|
|
</article>
|
|
<span data-space></span>
|
|
|
|
|
|
|
|
<!-- GESTION DES FICHES RELATIONS -->
|
|
<h3 data-n='4' class='color4'>Remplir les fiches des contacts les plus récurrents</h3>
|
|
<!-- NAVIGATION ENTRE LES FICHES -->
|
|
<!-- <div class='line' id='p_hide-fiche'>Cacher la section</div> -->
|
|
<div class='arrow-container line' id='p_nav-fiche'></div>
|
|
<article class='relation-panel'></article>
|
|
<span data-space></span>
|
|
|
|
|
|
|
|
<!-- MATRICE RELATIONNELLE DES 2 TOP 10 -->
|
|
<h3 data-n='5' class='color4'>Renseigner les relations entre les contacts</h3>
|
|
<!-- NAVIGATION ENTRE LES FICHES -->
|
|
<article class='matrice-panel' id='snake'></article>
|
|
|
|
|
|
<!-- BOUTON D'ENVOI DU FORMULAIRE -->
|
|
<h3 data-n='6' class='color4'>Envoi des données</h3>
|
|
<article class='submit-panel'>
|
|
<h4>
|
|
<input type='submit' class='line' value='Envoyer le formulaire' id='p_submit-all'>
|
|
</h4>
|
|
</article>
|
|
|
|
</section>
|
|
<span data-space></span>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php /* [4] ADMIN -> Donnees Facebook
|
|
=========================================================*/
|
|
?><section data-sublink='facebook'> <!-- IMPORT ou SAISIE -->
|
|
|
|
<section data-timeline class='facebook'>
|
|
|
|
<h3 data-n='0' class='color4'>Effacer les données de la dernière enquête</h3>
|
|
<span data-space></span>
|
|
<h4 class='self color2' data-icon=''>
|
|
<a style='display:none' id='f_download-target'></a>
|
|
<input type='submit' class='primary' id='f_export-all' value="Sauvegarder l'enquête"><br>
|
|
</h4>
|
|
|
|
<h4 class='self color2' data-icon='u'>
|
|
<input type='file' id='f_local-upload' style='display: none;'>
|
|
<input type='submit' class='primary' id='f_import-all' value='Récupérer une sauvegarde'><br>
|
|
</h4>
|
|
|
|
<h4 class='self color2' data-icon='w'>
|
|
<input type='submit' class='primary' id='f_clear-all' value='Tout effacer'>
|
|
</h4>
|
|
<span data-space></span>
|
|
|
|
|
|
|
|
<h3 data-n='1' class='color4'>Identifier l'enquêté</h3>
|
|
<article class='subject-panel'>
|
|
<h4 class='self color2' data-icon='a'>
|
|
|
|
<span class='select-container nobold'><select data-name='subject_id'>
|
|
<option value='.' disabled selected>Identifiant</option>
|
|
<?php foreach($allSub as $id=>$data)
|
|
// if( !isset($data['facebook']) ) // Si aucune donnée pour fb
|
|
echo "<option value='$id'>".$data['name']." [$id]</option>";
|
|
?>
|
|
</select></span>
|
|
|
|
<input type='submit' class='primary' data-name='submit' data-store value='Enregistrer'>
|
|
</h4>
|
|
</article>
|
|
|
|
<h3 data-n='2' class='color4'>Saisir manuellement les amis</h3>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- GESTION DE L'AJOUT DES CONTACTS -->
|
|
<span data-space></span>
|
|
<h5 data-text="Renseigner au moins un des nominatifs pour chaque amis. (pseudo, prénom et/ou nom)"></h5>
|
|
<div class='arrow-container line' id='f_nav-contact'></div>
|
|
|
|
<article class='contact-panel'>
|
|
</article>
|
|
<span data-space></span>
|
|
|
|
|
|
|
|
|
|
<!-- GESTION DES MINI-FICHES RELATIONS -->
|
|
<h3 data-n='3' class='color4'>Remplir les fiches relations rapides pour tous les amis</h3>
|
|
<!-- NAVIGATION ENTRE LES FICHES -->
|
|
<span data-space></span>
|
|
<div class='arrow-container line' id='f_nav-mini'></div>
|
|
|
|
<article class='mini-relation-panel'>
|
|
|
|
</article>
|
|
<span data-space></span>
|
|
|
|
|
|
|
|
<!-- GESTION DES FICHES RELATIONS -->
|
|
<h3 data-n='4' class='color4'>Remplir les fiches relations complètes des amis les plus proches</h3>
|
|
<!-- NAVIGATION ENTRE LES FICHES -->
|
|
<div class='arrow-container line' id='f_nav-fiche'></div>
|
|
<article class='relation-panel'></article>
|
|
<span data-space></span>
|
|
|
|
|
|
|
|
<!-- MATRICE RELATIONNELLE DES 2 TOP 10 -->
|
|
<h3 data-n='5' class='color4'>Saisir les matrices des relations entre les amis les plus proches</h3>
|
|
<!-- NAVIGATION ENTRE LES FICHES -->
|
|
<article class='matrice-panel'></article>
|
|
|
|
|
|
<!-- BOUTON D'ENVOI DU FORMULAIRE -->
|
|
<h3 data-n='6' class='color4'>Envoi des données</h3>
|
|
<article class='submit-panel'>
|
|
<h4>
|
|
<input type='submit' class='line' value='Envoyer le formulaire' id='f_submit-all'>
|
|
</h4>
|
|
</article>
|
|
|
|
</section>
|
|
<span data-space></span>
|
|
|
|
</section>
|