<?php // Protection de la page User::protection(5); // On récupère les données génériques sur la ville $ville = Maps::cityData($_GET['code']); $pays = Maps::countryData($ville['country']); // On récupère les statistiques $electeurs = Maps::cityVoters($ville['id']); $emails = Maps::cityContactDetails($ville['id'], 'email'); $mobiles = Maps::cityContactDetails($ville['id'], 'mobile'); $fixes = Maps::cityContactDetails($ville['id'], 'fixe'); // Chargement du template Core::loadHeader(); ?> <h2><?php echo mb_convert_case($ville['city'], MB_CASE_TITLE); ?> </h2> <div class="colonne demi gauche"> <section class="contenu"> <h4>Informations générales</h4> <ul class="informations"> <li class="electeur"><span>Électeurs</span><span><strong><?php echo number_format($electeurs, 0, ',', ' '); ?> </strong> <em>électeur<?php if ($electeurs > 1) { ?>
<?php /** * Modification de l'immeuble d'habitation d'un contact * * PHP version 5 * * @category Ajax * @package LeQG * @author Damien Senger <*****@*****.**> * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License 3.0 * @link http://leqg.info */ $street = Maps::streetData($_POST['rue']); $building = Maps::buildingNew($_POST['immeuble'], $street['id']); $zipcode = Maps::zipcodeDetect($street['id']); $city = Maps::cityData($street['city']); $address = Maps::addressNew($_POST['fiche'], $city['id'], $zipcode, $street['id'], $building); $data = new People($_POST['fiche']); $postal = $data->postal_address(); echo $postal['reel'];
<?php // On ouvre la mission $data = new Mission($_GET['mission']); // On vérifie que la mission a bien été ouverte if ($data->err) { Core::goPage('porte', true); } // On récupère tous les items de la rue et la rue en question et la ville concernée $rue = Maps::streetData($_GET['rue']); $ville = Maps::cityData($rue['city']); $items = $data->items($_GET['rue']); if (!$items) { Core::goPage('reporting', array('mission' => $_GET['mission']), true); } // typologie $typologie = $data->get('mission_type') == 'porte' ? 'porte' : 'boite'; // On charge le header Core::loadHeader(); ?> <a href="<?php Core::goPage('reporting', array('mission' => $data->get('mission_hash'))); ?> " class="nostyle"><button class="gris" style="float: right; margin-top: 0em;">Retour à la mission</button></a> <h2 id="titre-mission" class="titre" data-mission="<?php echo $data->get('mission_hash'); ?> ">Mission « <?php echo $data->get('mission_nom'); ?> »</h2>