[SPIP] +2.1.12
[velocampus/web/www.git] / www / ecrire / configuration / documents.php
diff --git a/www/ecrire/configuration/documents.php b/www/ecrire/configuration/documents.php
new file mode 100644 (file)
index 0000000..726be0d
--- /dev/null
@@ -0,0 +1,57 @@
+<?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;
+
+include_spip('inc/presentation');
+include_spip('inc/config');
+
+//
+// Gestion des documents joints
+//
+
+function configuration_documents_dist(){
+       global $spip_lang_left, $spip_lang_right;
+
+       $res = "<table border='0' cellspacing='1' cellpadding='3' width=\"100%\">";
+       $res .= "<tr><td class='verdana2'>";
+       $res .= _T('texte_documents_joints');
+       $res .= _T('texte_documents_joints_2');
+       $res .= "</td></tr>";
+
+       $res .= "<tr>";
+       $res .= "<td align='$spip_lang_left' class='verdana2'>";
+       $res .= afficher_choix('documents_article',
+               $GLOBALS['meta']["documents_article"],
+               array('oui' => _T('item_autoriser_documents_joints'),
+                       'non' => _T('item_non_autoriser_documents_joints')), "<br />\n");
+       $res .= "<br /><br />\n";
+       $res .= afficher_choix('documents_rubrique',
+               $GLOBALS['meta']["documents_rubrique"],
+               array('oui' => _T('item_autoriser_documents_joints_rubriques'),
+                       'non' => _T('item_non_autoriser_documents_joints_rubriques')), "<br />\n");
+       $res .= "<br /><br />\n";
+       $res .= afficher_choix('documents_date',
+               $GLOBALS['meta']["documents_date"],
+               array('oui' => _T('item_autoriser_selectionner_date_en_ligne'),
+                       'non' => _T('item_non_autoriser_selectionner_date_en_ligne')), "<br />\n");
+       $res .= "</td></tr>";
+       $res .= "</table>\n";
+
+       $res = debut_cadre_trait_couleur("doc-24.gif", true, "", _T('titre_documents_joints'))
+       . ajax_action_post('configurer', 'documents', 'configuration','',$res)
+       . fin_cadre_trait_couleur(true);
+
+       return ajax_action_greffe('configurer-documents', '', $res);
+}
+
+?>