[PLUGINS] +abomailman
[ptitvelo/web/www.git] / www / plugins / abomailmans / abomailmans_fonctions.php
diff --git a/www/plugins/abomailmans/abomailmans_fonctions.php b/www/plugins/abomailmans/abomailmans_fonctions.php
new file mode 100755 (executable)
index 0000000..3b8aa9a
--- /dev/null
@@ -0,0 +1,45 @@
+<?php
+/*
+ * Abomailmans
+ * MaZiaR - NetAktiv
+ * tech@netaktiv.com
+ * Printemps 2007 - 2012
+ * $Id: abomailmans_fonctions.php 58718 2012-02-20 13:00:39Z root $
+*/
+
+if (!defined("_ECRIRE_INC_VERSION")) return;
+
+function nettoie_chemin($chemin){
+       $liste = explode ("/", $chemin);
+       $dernier=count($liste)-1;
+       $chemin = str_replace('.html','',$liste[$dernier]);
+       $liste2 = explode('&',$chemin);
+       $chemin = $liste2[0];
+       return $chemin;
+}
+
+function noextension($chemin){
+       return str_replace('.html','',$chemin);
+}
+
+function recup_param($chemin){
+       $a = explode('&', $chemin);
+       $i = 1;
+       while ($i < count($a)) { 
+           $retour.= "&".htmlspecialchars(urldecode($a[$i]));
+           $i++;
+       }       
+       return $retour;
+}
+
+function array_param($params){
+       parse_str($params,$output);
+       return $output; 
+}
+
+function moins30($date) {
+       $moins30 = date('Y-m-d h:m:s', time()-24*3600*30);  
+       return $moins30;
+}
+
+?>
\ No newline at end of file