[SPIP] +2.1.12
[velocampus/web/www.git] / www / ecrire / exec / tourner.php
diff --git a/www/ecrire/exec/tourner.php b/www/ecrire/exec/tourner.php
new file mode 100644 (file)
index 0000000..1501b8e
--- /dev/null
@@ -0,0 +1,36 @@
+<?php
+
+/***************************************************************************\
+ *  SPIP, Systeme de publication pour l'internet                           *
+ *                                                                         *
+ *  Copyright (c) 2001-2011                                                *
+ *  Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James  *
+ *                                                                         *
+ *  Ce programme est un logiciel libre distribue sous licence GNU/GPL.     *
+ *  Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne.   *
+\***************************************************************************/
+
+if (!defined('_ECRIRE_INC_VERSION')) return;
+
+// http://doc.spip.org/@exec_tourner_dist
+function exec_tourner_dist()
+{
+       exec_tourner_args(intval(_request('id_document')), _request('type'), intval(_request('id')));
+}
+
+// http://doc.spip.org/@exec_tourner_args
+function exec_tourner_args($id_document, $type, $id)
+{
+       if (!$id_document OR !($type == 'article' 
+                              ? autoriser('modifier','article',$id)
+                              : autoriser('publierdans','rubrique',$id))) {
+               include_spip('inc/minipres');
+               echo minipres();
+       } else {
+         include_spip('inc/actions');
+         $tourner = charger_fonction('tourner', 'inc');
+         ajax_retour($tourner($id_document, array(), _request('script'), 'ajax', $type));
+       }
+}
+
+?>