[openads-Commits] r7660 - in branches/4.5.0_OM_4.7_prop0006: . scr spg

0 views
Skip to first unread message

fmi...@adullact.net

unread,
Dec 15, 2017, 3:05:54 AM12/15/17
to openmairi...@googlegroups.com
Author: fmichon
Date: 2017-12-15 09:05:47 +0100 (Fri, 15 Dec 2017)
New Revision: 7660

Added:
branches/4.5.0_OM_4.7_prop0006/scr/
branches/4.5.0_OM_4.7_prop0006/scr/dashboard.php
branches/4.5.0_OM_4.7_prop0006/scr/edition.php
branches/4.5.0_OM_4.7_prop0006/scr/form.php
branches/4.5.0_OM_4.7_prop0006/scr/form_sig.php
branches/4.5.0_OM_4.7_prop0006/scr/gen.php
branches/4.5.0_OM_4.7_prop0006/scr/import.php
branches/4.5.0_OM_4.7_prop0006/scr/index.php
branches/4.5.0_OM_4.7_prop0006/scr/login.php
branches/4.5.0_OM_4.7_prop0006/scr/logout.php
branches/4.5.0_OM_4.7_prop0006/scr/map.php
branches/4.5.0_OM_4.7_prop0006/scr/password.php
branches/4.5.0_OM_4.7_prop0006/scr/reqmo.php
branches/4.5.0_OM_4.7_prop0006/scr/sousform.php
branches/4.5.0_OM_4.7_prop0006/scr/soustab.php
branches/4.5.0_OM_4.7_prop0006/scr/tab.php
branches/4.5.0_OM_4.7_prop0006/scr/tab_sig.php
branches/4.5.0_OM_4.7_prop0006/spg/
branches/4.5.0_OM_4.7_prop0006/spg/autocomplete.php
branches/4.5.0_OM_4.7_prop0006/spg/combo.php
branches/4.5.0_OM_4.7_prop0006/spg/direct_link.php
branches/4.5.0_OM_4.7_prop0006/spg/file.php
branches/4.5.0_OM_4.7_prop0006/spg/index.php
branches/4.5.0_OM_4.7_prop0006/spg/localisation.php
branches/4.5.0_OM_4.7_prop0006/spg/map_compute_geom.php
branches/4.5.0_OM_4.7_prop0006/spg/map_get_filters.php
branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_cart.php
branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_datas.php
branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_markers.php
branches/4.5.0_OM_4.7_prop0006/spg/map_redirection_onglet.php
branches/4.5.0_OM_4.7_prop0006/spg/map_session.php
branches/4.5.0_OM_4.7_prop0006/spg/upload.php
branches/4.5.0_OM_4.7_prop0006/spg/voir.php
Log:
* Mise ?\195?\160 niveau framework 4.7 : Suppression des externals vers scr/ et spg/ pour les remplacer par des r?\195?\169pertoires locaux.


Added: branches/4.5.0_OM_4.7_prop0006/scr/dashboard.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/dashboard.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/dashboard.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer le tableau de bord de l'application.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: dashboard.php 3266 2015-06-22 14:13:30Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_dashboard();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/edition.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/edition.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/edition.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer le module 'Édition'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: edition.php 3296 2015-07-08 07:59:31Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_module_edition();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/form.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/form.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/form.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer le module form de l'application.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: form.php 3345 2015-11-18 22:20:27Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_form();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/form_sig.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/form_sig.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/form_sig.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer la vue 'form_sig'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: form_sig.php 3345 2015-11-18 22:20:27Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_form_sig();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/gen.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/gen.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/gen.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer le module 'Générateur'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: gen.php 3266 2015-06-22 14:13:30Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_module_gen();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/import.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/import.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/import.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer le module 'Import'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: import.php 3266 2015-06-22 14:13:30Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_module_import();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/index.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/index.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/index.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet de faire une redirection vers le fichier index.php à la
+ * racine de l'application.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: index.php 3356 2015-11-19 15:52:11Z fmichon $
+ */
+
+header("Location: ../index.php");
+exit();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/login.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/login.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/login.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer la connexion de l'utilisateur.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: login.php 3356 2015-11-19 15:52:11Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("login");
+$f->view_login();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/logout.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/logout.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/logout.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer la déconnexion de l'utilisateur.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: logout.php 3356 2015-11-19 15:52:11Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("logout");
+$f->view_login();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/map.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/map.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/map.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer la vue 'map'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id$
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_map();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/password.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/password.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/password.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer le changement de mot de passe d'un utilisateur.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: password.php 3355 2015-11-19 15:46:06Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_password();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/reqmo.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/reqmo.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/reqmo.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer le module 'Reqmo'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: reqmo.php 3266 2015-06-22 14:13:30Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_module_reqmo();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/sousform.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/sousform.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/sousform.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer le module form de l'application.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: sousform.php 3345 2015-11-18 22:20:27Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_sousform();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/soustab.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/soustab.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/soustab.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer le module tab de l'application.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: soustab.php 3345 2015-11-18 22:20:27Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_soustab();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/tab.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/tab.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/tab.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer le module tab de l'application.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: tab.php 3345 2015-11-18 22:20:27Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_tab();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/scr/tab_sig.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/scr/tab_sig.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/scr/tab_sig.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce script permet d'interfacer la vue 'tab_sig'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: tab_sig.php 3345 2015-11-18 22:20:27Z fmichon $
+ */
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_tab_sig();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/autocomplete.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/autocomplete.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/autocomplete.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer le snippet de formulaire 'autocomplete'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id$
+ */
+
+$_GET["snippet"] = "autocomplete";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_form();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/combo.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/combo.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/combo.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer le snippet de formulaire 'combo'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: combo.php 4048 2017-10-04 06:12:00Z fmichon $
+ */
+
+$_GET["snippet"] = "combo";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_form();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/direct_link.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/direct_link.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/direct_link.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer la fonction 'directlink'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: direct_link.php 4052 2017-10-04 09:23:20Z fmichon $
+ */
+
+$_GET["direct_link"] = "true";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_form();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/file.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/file.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/file.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer le snippet de formulaire 'file'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: file.php 4048 2017-10-04 06:12:00Z fmichon $
+ */
+
+$_GET["snippet"] = "file";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_form();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/index.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/index.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/index.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Ce fichier permet de faire une redirection vers le fichier index.php a la
+ * racine de l'application.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: index.php 2261 2013-04-17 09:38:29Z fmichon $
+ */
+
+header("Location: ../index.php");
+exit();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/localisation.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/localisation.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/localisation.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer le snippet de formulaire 'localisation'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: localisation.php 4048 2017-10-04 06:12:00Z fmichon $
+ */
+
+$_GET["snippet"] = "localisation";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_form();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/map_compute_geom.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/map_compute_geom.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/map_compute_geom.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer la vue 'map'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id$
+ */
+
+$_GET["mode"] = "compute_geom";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_map();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/map_get_filters.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/map_get_filters.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/map_get_filters.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer la vue 'map'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id$
+ */
+
+$_GET["mode"] = "get_filters";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_map();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_cart.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_cart.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_cart.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer la vue 'map'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id$
+ */
+
+$_GET["mode"] = "get_geojson_cart";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_map();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_datas.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_datas.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_datas.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer la vue 'map'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id$
+ */
+
+$_GET["mode"] = "get_geojson_datas";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_map();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_markers.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_markers.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/map_get_geojson_markers.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer la vue 'map'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id$
+ */
+
+$_GET["mode"] = "get_geojson_markers";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_map();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/map_redirection_onglet.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/map_redirection_onglet.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/map_redirection_onglet.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer la vue 'map'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id$
+ */
+
+$_GET["mode"] = "redirection_onglet";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_map();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/map_session.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/map_session.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/map_session.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer la vue 'map'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id$
+ */
+
+$_GET["mode"] = "session";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_map();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/upload.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/upload.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/upload.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer le snippet de formulaire 'upload'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: upload.php 4048 2017-10-04 06:12:00Z fmichon $
+ */
+
+$_GET["snippet"] = "upload";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_form();
+
+?>

Added: branches/4.5.0_OM_4.7_prop0006/spg/voir.php
===================================================================
--- branches/4.5.0_OM_4.7_prop0006/spg/voir.php (rev 0)
+++ branches/4.5.0_OM_4.7_prop0006/spg/voir.php 2017-12-15 08:05:47 UTC (rev 7660)
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Ce script permet d'interfacer le snippet de formulaire 'voir'.
+ *
+ * @package openmairie_exemple
+ * @version SVN : $Id: voir.php 4048 2017-10-04 06:12:00Z fmichon $
+ */
+
+$_GET["snippet"] = "voir";
+
+require_once "../obj/utils.class.php";
+$f = new utils("nohtml");
+$f->view_form();
+
+?>

Reply all
Reply to author
Forward
0 new messages