Reorganize files

This commit is contained in:
Laurent Destailleur 2009-02-19 18:47:18 +00:00
parent 38c45644a2
commit 94125ef0d8
4 changed files with 69 additions and 64 deletions

View File

@ -48,6 +48,7 @@ htdocs/telephonie
htdocs/voyage htdocs/voyage
mssql mssql
scripts/addons scripts/addons
scripts/books
scripts/courrier scripts/courrier
scripts/lolix scripts/lolix
CVS CVS

View File

@ -1,5 +1,6 @@
<?php <?php
/* Copyright (C) 2007 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -17,31 +18,30 @@
*/ */
/** /**
\defgroup editeur Module editeur * \defgroup editeur Module editeur
\brief Module pour gerer le suivi des editeurs * \brief Module pour gerer les livres et editeurs
\version $Id$ * \version $Id$
*/ */
/** /**
\file htdocs/includes/modules/modEditeur.class.php * \file htdocs/includes/modules/modEditeur.class.php
\ingroup editeur * \ingroup editeur
\brief Fichier de description et activation du module Editeur * \brief Fichier de description et activation du module Editeur
*/ */
include_once(DOL_DOCUMENT_ROOT ."/includes/modules/DolibarrModules.class.php"); include_once(DOL_DOCUMENT_ROOT ."/includes/modules/DolibarrModules.class.php");
/** /**
\class modEditeur * \class modEditeur
\brief Classe de description et activation du module Editeur * \brief Classe de description et activation du module Editeur
*/ */
class modEditeur extends DolibarrModules class modEditeur extends DolibarrModules
{ {
/** /**
* \brief Constructeur. Definit les noms, constantes et boites * \brief Constructeur. Definit les noms, constantes et boites
* \param DB handler d'acc<EFBFBD>s base * \param DB Database handler
*/ */
function modEditeur($DB) function modEditeur($DB)
{ {

View File

@ -1,6 +1,7 @@
#!/usr/bin/php #!/usr/bin/php
<?PHP <?PHP
/* Copyright (C) 2007 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -15,22 +16,20 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
* $Source$
*
*/ */
/** /**
\file scripts/courrier/droits-editeurs.php * \file scripts/books/droits-editeurs.php
\ingroup editeurs * \ingroup editeurs
\brief Script de generation des courriers pour les editeurs * \brief Script de generation des courriers pour les editeurs
*/ * \version $Id$
*/
require_once("../../htdocs/master.inc.php"); require_once("../../htdocs/master.inc.php");
require_once(FPDF_PATH.'fpdf.php'); require_once(FPDF_PATH.'fpdf.php');
require_once("../../htdocs/product.class.php"); require_once(DOL_DOCUMENT_ROOT."/product.class.php");
require_once("../../htdocs/product/canvas/product.livre.class.php"); require_once(DOL_DOCUMENT_ROOT."/product/canvas/product.livre.class.php");
$error = 0; $error = 0;
$year = strftime("%Y", time()); $year = strftime("%Y", time());

View File

@ -1,5 +1,7 @@
#!/usr/bin/php
<?PHP <?PHP
/* Copyright (C) 2007 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -14,13 +16,16 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
* $Source$
*
*
*/ */
require_once("../../../htdocs/master.inc.php");
/**
* \file scripts/books/droits-editeurs.php
* \ingroup editeurs
* \brief Script de generation des courriers pour les editeurs
* \version $Id$
*/
require_once("../../htdocs/master.inc.php");
require_once(PHP_WRITEEXCEL_PATH."/class.writeexcel_workbook.inc.php"); require_once(PHP_WRITEEXCEL_PATH."/class.writeexcel_workbook.inc.php");
require_once(PHP_WRITEEXCEL_PATH."/class.writeexcel_worksheet.inc.php"); require_once(PHP_WRITEEXCEL_PATH."/class.writeexcel_worksheet.inc.php");