]> _ Git - cubeextranet.git/commitdiff
(no commit message)
authorvincent@cubedesigners.com <vincent@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Mon, 17 Jan 2011 15:16:59 +0000 (15:16 +0000)
committervincent@cubedesigners.com <vincent@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Mon, 17 Jan 2011 15:16:59 +0000 (15:16 +0000)
inc/commons/Metier/class.common.fichier.php [new file with mode: 0644]
inc/commons/Metier/class.extranet.fichier.php [deleted file]
inc/extranet/DAO/_common.php
inc/extranet/Metier/_common.php

diff --git a/inc/commons/Metier/class.common.fichier.php b/inc/commons/Metier/class.common.fichier.php
new file mode 100644 (file)
index 0000000..133c130
--- /dev/null
@@ -0,0 +1,25 @@
+<?php\r
+class extranetFichier extends cubeMetier {\r
+       protected $nom;\r
+       protected $type;\r
+       protected $taille;\r
+       protected $date;\r
+       protected $chemin;\r
+       protected $contact;\r
+       protected $destinataire;\r
+       protected $relPath;\r
+\r
+       public function __toString()\r
+       {\r
+               $r = array();\r
+               $skip = array('taille', 'date', 'chemin', 'type','relPath');\r
+               foreach($this as $k => $v) {\r
+                       if (!in_array($k, $skip)) {\r
+                               $r[] = (string)$v;\r
+                       }\r
+               }\r
+               return implode($r);\r
+       }\r
+}\r
+\r
+?>
\ No newline at end of file
diff --git a/inc/commons/Metier/class.extranet.fichier.php b/inc/commons/Metier/class.extranet.fichier.php
deleted file mode 100644 (file)
index 133c130..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php\r
-class extranetFichier extends cubeMetier {\r
-       protected $nom;\r
-       protected $type;\r
-       protected $taille;\r
-       protected $date;\r
-       protected $chemin;\r
-       protected $contact;\r
-       protected $destinataire;\r
-       protected $relPath;\r
-\r
-       public function __toString()\r
-       {\r
-               $r = array();\r
-               $skip = array('taille', 'date', 'chemin', 'type','relPath');\r
-               foreach($this as $k => $v) {\r
-                       if (!in_array($k, $skip)) {\r
-                               $r[] = (string)$v;\r
-                       }\r
-               }\r
-               return implode($r);\r
-       }\r
-}\r
-\r
-?>
\ No newline at end of file
index 42f2f65328c3fcc62fa96141b56415a7795e3b09..4b4332f1e773b909cfb73a72f8e5737312af8215 100644 (file)
@@ -5,5 +5,4 @@ $__autoload['extranetDAOFacture'] = dirname(__FILE__) . '/class.extranet.dao.fac
 $__autoload['extranetDAOProjet'] = dirname(__FILE__) . '/class.extranet.dao.projet.php';\r
 $__autoload['extranetDAOTache'] = dirname(__FILE__) . '/class.extranet.dao.tache.php';\r
 $__autoload['extranetDAOTimereport'] = dirname(__FILE__) . '/class.extranet.dao.timereport.php';\r
-$__autoload['extranetDAOFichier'] = dirname(__FILE__) . '/class.extranet.dao.fichier.php';\r
 ?>
\ No newline at end of file
index cfd56e567892450f4642ffb5f5c6b18cb1accfb2..568346350750a1aa5de954f73ffe863f027b92a6 100644 (file)
@@ -7,8 +7,5 @@ $__autoload['extranetTimereport'] = dirname(__FILE__) . '/class.extranet.timerep
 $__autoload['extranetDocument'] = dirname(__FILE__) . '/class.extranet.document.php';\r
 $__autoload['extranetDevis'] = dirname(__FILE__) . '/class.extranet.devis.php';\r
 $__autoload['extranetFacture'] = dirname(__FILE__) . '/class.extranet.facture.php';\r
-$__autoload['extranetFichier'] = dirname(__FILE__) . '/class.extranet.fichier.php';\r
-\r
-\r
 \r
 ?>
\ No newline at end of file