From 01991cec89a40ae12e6691cfbdd6fbc4d9e7263e Mon Sep 17 00:00:00 2001 From: Philippe Grand Date: Thu, 8 Apr 2010 13:19:42 +0000 Subject: [PATCH] move stats class to core directory --- htdocs/comm/propal/stats/propalestats.class.php | 2 +- htdocs/commande/stats/commandestats.class.php | 10 +++++----- .../deplacement/stats/deplacementstats.class.php | 2 +- htdocs/compta/facture/stats/facturestats.class.php | 2 +- htdocs/{ => core}/stats.class.php | 0 5 files changed, 8 insertions(+), 8 deletions(-) rename htdocs/{ => core}/stats.class.php (100%) diff --git a/htdocs/comm/propal/stats/propalestats.class.php b/htdocs/comm/propal/stats/propalestats.class.php index 5c2d2c65faf..713c91de9bb 100644 --- a/htdocs/comm/propal/stats/propalestats.class.php +++ b/htdocs/comm/propal/stats/propalestats.class.php @@ -25,7 +25,7 @@ * \version $Id$ */ -include_once DOL_DOCUMENT_ROOT . "/stats.class.php"; +include_once DOL_DOCUMENT_ROOT . "/core/stats.class.php"; include_once DOL_DOCUMENT_ROOT . "/comm/propal/propal.class.php"; diff --git a/htdocs/commande/stats/commandestats.class.php b/htdocs/commande/stats/commandestats.class.php index c8f1460d42d..1b2fafdfe23 100644 --- a/htdocs/commande/stats/commandestats.class.php +++ b/htdocs/commande/stats/commandestats.class.php @@ -24,7 +24,7 @@ * \brief Fichier de la classe de gestion des stats des commandes * \version $Id$ */ -include_once DOL_DOCUMENT_ROOT . "/stats.class.php"; +include_once DOL_DOCUMENT_ROOT . "/core/stats.class.php"; include_once DOL_DOCUMENT_ROOT . "/commande/commande.class.php"; include_once DOL_DOCUMENT_ROOT . "/fourn/fournisseur.commande.class.php"; @@ -87,7 +87,7 @@ class CommandeStats extends Stats } /** - * \brief Renvoie le nombre de commande par mois pour une année donnée + * \brief Renvoie le nombre de commande par mois pour une ann�e donn�e * */ function getNbByMonth($year) @@ -106,7 +106,7 @@ class CommandeStats extends Stats } /** - * Renvoie le nombre de commande par année + * Renvoie le nombre de commande par ann�e * */ function getNbByYear() @@ -124,7 +124,7 @@ class CommandeStats extends Stats } /** - * Renvoie le nombre de commande par mois pour une année donnée + * Renvoie le nombre de commande par mois pour une ann�e donn�e * */ function getAmountByMonth($year) @@ -143,7 +143,7 @@ class CommandeStats extends Stats } /** - * Renvoie le nombre de commande par mois pour une année donnée + * Renvoie le nombre de commande par mois pour une ann�e donn�e * */ function getAverageByMonth($year) diff --git a/htdocs/compta/deplacement/stats/deplacementstats.class.php b/htdocs/compta/deplacement/stats/deplacementstats.class.php index 522ce737aa3..38a8c7bd39f 100755 --- a/htdocs/compta/deplacement/stats/deplacementstats.class.php +++ b/htdocs/compta/deplacement/stats/deplacementstats.class.php @@ -24,7 +24,7 @@ * \brief Fichier de la classe de gestion des stats des deplacement et notes de frais * \version $Id$ */ -include_once DOL_DOCUMENT_ROOT . "/stats.class.php"; +include_once DOL_DOCUMENT_ROOT . "/core/stats.class.php"; include_once DOL_DOCUMENT_ROOT . "/compta/deplacement/deplacement.class.php"; /** diff --git a/htdocs/compta/facture/stats/facturestats.class.php b/htdocs/compta/facture/stats/facturestats.class.php index 7655f034a40..5ada54fbdd4 100644 --- a/htdocs/compta/facture/stats/facturestats.class.php +++ b/htdocs/compta/facture/stats/facturestats.class.php @@ -24,7 +24,7 @@ * \brief Fichier de la classe de gestion des stats des factures * \version $Id$ */ -include_once DOL_DOCUMENT_ROOT . "/stats.class.php"; +include_once DOL_DOCUMENT_ROOT . "/core/stats.class.php"; include_once DOL_DOCUMENT_ROOT . "/compta/facture/facture.class.php"; include_once DOL_DOCUMENT_ROOT . "/fourn/fournisseur.facture.class.php"; diff --git a/htdocs/stats.class.php b/htdocs/core/stats.class.php similarity index 100% rename from htdocs/stats.class.php rename to htdocs/core/stats.class.php