Accéder au contenu.
Menu Sympa

devel - [Devel] r385 - trunk

Objet : devel-adl

Archives de la liste

[Devel] r385 - trunk


Chronologique Discussions 
  • From: svn AT agendadulibre.org
  • To: devel AT agendadulibre.org
  • Subject: [Devel] r385 - trunk
  • Date: Tue, 23 Sep 2008 22:51:53 +0200 (CEST)
  • List-archive: <http://agendadulibre.org/pipermail/devel>
  • List-id: Developpement de l'Agenda du Libre <devel.agendadulibre.org>

Author: thomas
Date: Tue Sep 23 22:51:53 2008
New Revision: 385

Log:
Ajout d'une nouvelle action de modération permettant de demander à un
soumetteur d'évènement d'ajouter des informations complémentaires.

* moderation.php:

- Lien vers la nouvelle action.

* requestinfosevent.php:

- Implémentation de la nouvelle action.



Added:
trunk/requestinfosevent.php
Modified:
trunk/moderation.php

Modified: trunk/moderation.php
==============================================================================
--- trunk/moderation.php (original)
+++ trunk/moderation.php Tue Sep 23 22:51:53 2008
@@ -84,7 +84,8 @@
echo "<td>";
echo "<a href=\"editevent.php?id=" . $row->id .
"\">�diter</a>&nbsp;-&nbsp;";
echo "<a href=\"validateevent.php?id=" . $row->id .
"\">Valider</a>&nbsp;-&nbsp;";
- echo "<a href=\"rejectevent.php?id=" . $row->id . "\">Refuser</a>";
+ echo "<a href=\"rejectevent.php?id=" . $row->id . "\">Refuser</a><br/>";
+ echo "<a href=\"requestinfosevent.php?id=" . $row->id . "\">Demander des
infos</a>";
echo "</td>\n";
echo "</tr>\n";


Added: trunk/requestinfosevent.php
==============================================================================
--- (empty file)
+++ trunk/requestinfosevent.php Tue Sep 23 22:51:53 2008
@@ -0,0 +1,135 @@
+<?php
+
+/* Copyright 2008
+ * - Thomas Petazzoni <thomas POINT petazzoni CHEZ enix POINT org>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ */
+
+include("bd.inc.php");
+include("funcs.inc.php");
+include("session.inc.php");
+include("user.inc.php");
+
+$db = new db();
+$user = new user($db);
+
+if ($_POST['__event_requestinfo_cancel'])
+{
+ header("Location: moderation.php");
+ exit;
+}
+else if ($_POST['__event_requestinfo_send'])
+{
+ $id = get_safe_integer('id', 0);
+
+ $event = fetch_event($db, $id);
+ if (! $event || $event->moderated)
+ {
+ put_header();
+ echo "<p>Op�ration interdite</p>";
+ put_footer();
+ exit;
+ }
+
+ $text =
+ "Bonjour,\n\n" .
+ "Nous avons bien re�u votre proposition d'�v�nement '" .
+ stripslashes($event->title) . "', et celui-ci a toute sa " .
+ "place dans l'Agenda du Libre. N�anmoins, avant d'�tre " .
+ " valid�, nous avons besoin de quelques informations " .
+ "compl�mentaires sur cet �v�nement :\n\n" .
+ $_POST["__text"] . "\n\n" .
+ "Nous vous invitons � ajouter ces informations en �ditant " .
+ "directement l'�v�nement � l'adresse suivante : \n\n" .
+ calendar_absolute_url("editevent.php?id=" . $event->id
+ . "&secret=" . $event->secret) . "\n\n" .
+ "Avec tous nos remerciements pour votre contribution,\n\n" .
+ "-- \n" .
+ "L'�quipe des mod�rateurs de l'Agenda du Libre";
+
+ $text = wordwrap($text);
+
+
+ calendar_mail($event->submitter, $moderatorlist,
+ "Demande d'informations sur l'�v�nement '" .
+ stripslashes($event->title) . "'", $text);
+
+ header("Location: moderation.php");
+}
+
+$id = get_safe_integer('id', 0);
+
+put_header("Demande d'informations sur un �v�nement");
+
+$event = fetch_event($db, $id);
+if (! $event)
+{
+ echo "<p>Pas d'�v�nement avec cet ID</p>";
+ put_footer();
+ exit;
+}
+
+if ($event->moderated)
+{
+ echo "<p>�v�nement d�j� mod�r�</p>";
+ put_footer();
+ exit;
+}
+
+echo '<p class="moderationheader">';
+echo "<a
href=\"moderation.php\">Mod�ration</a>&nbsp;&gt;&gt;&gt&nbsp;Demande
d'informations de l'�v�nement";
+echo "</p>";
+
+?>
+
+<div class="moderationbox">
+<form action="requestinfosevent.php?id=<?php echo $id ?>" method="post">
+<p>Bonjour,</p>
+
+<p>Nous avons bien re�u votre proposition d'�v�nement '<? echo
+$event->title; ?>', et celui-ci a toute sa place dans l'Agenda du
+Libre. N�anmoins, avant d'�tre valid�, nous avons besoin de quelques
+informations compl�mentaires sur cet �v�nement :</p>
+
+<textarea id="__text" cols="80" rows="10" name="__text"></textarea>
+
+<p>Nous vous invitons � ajouter ces informations en �ditant directement
+l'�v�nement � l'adresse suivante :</p>
+
+<p><?php echo calendar_absolute_url("editevent.php?id=" . $event->id
+. "&secret=" . $event->secret) ?></p>
+
+<p>Avec tous nos remerciements pour votre contribution,</p>
+
+<p>L'�quipe des mod�rateurs de l'Agenda du Libre</p>
+
+<input name="__event_requestinfo_send" type="submit" value="Envoyer"/>
+<input name="__event_requestinfo_cancel" type="submit" value="Annuler"/>
+</form>
+</div>
+
+<?php
+echo '<div class="moderationbox">';
+echo format_event ($db, $event->title, strtotime($event->start_time),
+ strtotime($event->end_time), $event->description,
+ $event->city, $event->region, $event->locality,
+ $event->url, $event->contact, $event->submitter,
+ $event->tags);
+echo '</div>';
+
+put_footer();
+?>
\ No newline at end of file




  • [Devel] r385 - trunk, svn, 23/09/2008

Archives gérées par MHonArc 2.6.16.

Haut de le page