Fix: uniformise name of directory and module name

This commit is contained in:
Regis Houssin 2010-05-13 15:55:15 +00:00
parent 4ed11786c1
commit cf7f7340e4
8 changed files with 10 additions and 10 deletions

View File

@ -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'=>'',

View File

@ -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)

View File

@ -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.

View File

@ -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');
/**

View File

@ -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

View File

@ -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 '<html><title>Export cal</title><body>'; }

View File

@ -18,7 +18,7 @@
*/
/**
* \file htdocs/webcal/webcaltop.php
* \file htdocs/webcalendar/webcaltop.php
* \ingroup webcalendar
* \brief Top frame to show calendar
* \version $Id$