diff --git a/htdocs/includes/modules/modWebcalendar.class.php b/htdocs/includes/modules/modWebcalendar.class.php index 6a1df82e467..07ec129ea55 100644 --- a/htdocs/includes/modules/modWebcalendar.class.php +++ b/htdocs/includes/modules/modWebcalendar.class.php @@ -77,7 +77,7 @@ class modWebcalendar extends DolibarrModules $this->dirs = array(); // Config pages. Put here list of php page names stored in admmin directory used to setup module - $this->config_page_url = array("webcalendar.php@webcal"); + $this->config_page_url = array("webcalendar.php@webcalendar"); // Dependencies $this->depends = array(); // List of modules id that must be enabled if this module is enabled @@ -110,7 +110,7 @@ class modWebcalendar extends DolibarrModules 'titre'=>'Calendar', 'mainmenu'=>'webcal', 'leftmenu'=>'1', - 'url'=>'/webcal/webcal.php', + 'url'=>'/webcalendar/webcal.php', 'langs'=>'other', 'position'=>100, 'perms'=>'', diff --git a/htdocs/webcal/admin/webcalendar.php b/htdocs/webcalendar/admin/webcalendar.php similarity index 99% rename from htdocs/webcal/admin/webcalendar.php rename to htdocs/webcalendar/admin/webcalendar.php index 6112e12dbfb..cef95f19f1b 100644 --- a/htdocs/webcal/admin/webcalendar.php +++ b/htdocs/webcalendar/admin/webcalendar.php @@ -21,7 +21,7 @@ */ /** - * \file htdocs/admin/webcalendar.php + * \file htdocs/webcalendar/admin/webcalendar.php * \ingroup webcalendar * \brief Page de configuration du module webcalendar * \version $Id$ @@ -29,7 +29,7 @@ require("../../main.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php"); -require_once(DOL_DOCUMENT_ROOT.'/webcal/class/webcal.class.php'); +require_once(DOL_DOCUMENT_ROOT.'/webcalendar/class/webcal.class.php'); if (!$user->admin) diff --git a/htdocs/webcal/class/webcal.class.php b/htdocs/webcalendar/class/webcal.class.php similarity index 99% rename from htdocs/webcal/class/webcal.class.php rename to htdocs/webcalendar/class/webcal.class.php index 34234738f53..cf0b517e8a2 100644 --- a/htdocs/webcal/class/webcal.class.php +++ b/htdocs/webcalendar/class/webcal.class.php @@ -18,7 +18,7 @@ */ /** - \file htdocs/webcal/webcal.class.php + \file htdocs/webcalendar/class/webcal.class.php \ingroup webcalendar \brief Ensemble des fonctions permettant d'acceder a la database webcalendar. \author Rodolphe Quiedeville. diff --git a/htdocs/webcal/inc/triggers/interface_modWebcalendar_Webcalsynchro.class.php b/htdocs/webcalendar/inc/triggers/interface_modWebcalendar_Webcalsynchro.class.php similarity index 99% rename from htdocs/webcal/inc/triggers/interface_modWebcalendar_Webcalsynchro.class.php rename to htdocs/webcalendar/inc/triggers/interface_modWebcalendar_Webcalsynchro.class.php index 73a01b2443c..b2c7b1938aa 100644 --- a/htdocs/webcal/inc/triggers/interface_modWebcalendar_Webcalsynchro.class.php +++ b/htdocs/webcalendar/inc/triggers/interface_modWebcalendar_Webcalsynchro.class.php @@ -23,7 +23,7 @@ \version $Id$ */ -include_once(DOL_DOCUMENT_ROOT.'/webcal/class/webcal.class.php'); +include_once(DOL_DOCUMENT_ROOT.'/webcalendar/class/webcal.class.php'); /** diff --git a/htdocs/webcal/index.php b/htdocs/webcalendar/index.php similarity index 100% rename from htdocs/webcal/index.php rename to htdocs/webcalendar/index.php diff --git a/htdocs/webcal/webcal.php b/htdocs/webcalendar/webcal.php similarity index 97% rename from htdocs/webcal/webcal.php rename to htdocs/webcalendar/webcal.php index c2fec51ff02..8d7477d11ad 100644 --- a/htdocs/webcal/webcal.php +++ b/htdocs/webcalendar/webcal.php @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/** \file htdocs/webcal/webcal.php +/** \file htdocs/webcalendar/webcal.php \ingroup webcalendar \brief Page generant 2 frames, une pour le menu Dolibarr, l'autre pour l'affichage du calendrier \author Laurent Destailleur diff --git a/htdocs/webcal/webcalexport.php b/htdocs/webcalendar/webcalexport.php similarity index 96% rename from htdocs/webcal/webcalexport.php rename to htdocs/webcalendar/webcalexport.php index b4db36508d0..18ecfd2ca16 100644 --- a/htdocs/webcal/webcalexport.php +++ b/htdocs/webcalendar/webcalexport.php @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/** \file htdocs/webcal/webcalexport.php +/** \file htdocs/webcalendar/webcalexport.php \ingroup webcalendar \brief Page export webcalendar \version $Id$ @@ -26,7 +26,7 @@ set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs'); require("../main.inc.php"); -require_once(DOL_DOCUMENT_ROOT.'/webcal/class/webcal.class.php'); +require_once(DOL_DOCUMENT_ROOT.'/webcalendar/class/webcal.class.php'); // C'est un wrapper, donc header vierge function llxHeader() { print 'Export cal'; } diff --git a/htdocs/webcal/webcaltop.php b/htdocs/webcalendar/webcaltop.php similarity index 95% rename from htdocs/webcal/webcaltop.php rename to htdocs/webcalendar/webcaltop.php index 87fc13a76db..625e2455815 100644 --- a/htdocs/webcal/webcaltop.php +++ b/htdocs/webcalendar/webcaltop.php @@ -18,7 +18,7 @@ */ /** - * \file htdocs/webcal/webcaltop.php + * \file htdocs/webcalendar/webcaltop.php * \ingroup webcalendar * \brief Top frame to show calendar * \version $Id$