Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
d57ba942
Commit
d57ba942
authored
12 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop
parents
cc38fbe3
f056ca3a
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/holiday/class/holidayagenda.class.php
+24
-24
24 additions, 24 deletions
htdocs/holiday/class/holidayagenda.class.php
test/phpunit/BuildDocTest.php
+0
-3
0 additions, 3 deletions
test/phpunit/BuildDocTest.php
with
24 additions
and
27 deletions
htdocs/holiday/class/holidayagenda.class.php
+
24
−
24
View file @
d57ba942
<?php
<?php
/* Copyright (C) 2006-2010 Laurent Destailleur <eldy@users.sourceforge.net>
/* Copyright (C) 2011 Anthony Hebert <ahebert@teclib.com>
* Copyright (C) 2005-2010 Regis Houssin <regis@dolibarr.fr>
* Copyright (C) 2012 Regis Houssin <regis@dolibarr.fr>
* Copyright (C) 2010 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2012 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2011 Anthony Hebert <ahebert@teclib.com>
*
*
* 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
...
@@ -22,7 +21,6 @@
...
@@ -22,7 +21,6 @@
* \file holidayagenda.class.php
* \file holidayagenda.class.php
* \ingroup holiday
* \ingroup holiday
* \brief Fichier d'agenda pour le module Congés Payés
* \brief Fichier d'agenda pour le module Congés Payés
* \version $Id: holidayagenda.class.php,v 1.00 2011/09/15 11:00:00 ahebert Exp $
*/
*/
...
@@ -31,11 +29,12 @@
...
@@ -31,11 +29,12 @@
* \brief Classe mere pour heritage des classes Agenda
* \brief Classe mere pour heritage des classes Agenda
*/
*/
require_once
(
DOL_DOCUMENT_ROOT
.
"/core/class/commonagenda.class.php"
);
// FIXME this class not exist
require_once
(
DOL_DOCUMENT_ROOT
.
"/projet/class/task.class.php"
);
//require_once DOL_DOCUMENT_ROOT.'/core/class/commonagenda.class.php';
require_once
DOL_DOCUMENT_ROOT
.
'/projet/class/task.class.php'
;
class
HolidayAgenda
extends
CommonAgenda
class
HolidayAgenda
//
extends CommonAgenda
{
{
var
$db
;
var
$db
;
...
@@ -49,12 +48,13 @@ class HolidayAgenda extends CommonAgenda
...
@@ -49,12 +48,13 @@ class HolidayAgenda extends CommonAgenda
/**
/**
* Constructeur de la classe
* Constructor
* @param DB Handler acces base de donnees
*
* @param DoliDB $db Database access handler
*/
*/
function
construct
(
$
DB
)
function
construct
(
$
db
)
{
{
$this
->
db
=
$
DB
;
$this
->
db
=
$
db
;
}
}
/**
/**
...
...
This diff is collapsed.
Click to expand it.
test/phpunit/BuildDocTest.php
+
0
−
3
View file @
d57ba942
...
@@ -40,10 +40,7 @@ require_once dirname(__FILE__).'/../../htdocs/projet/class/task.class.php';
...
@@ -40,10 +40,7 @@ require_once dirname(__FILE__).'/../../htdocs/projet/class/task.class.php';
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/fourn/class/fournisseur.product.class.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/fourn/class/fournisseur.product.class.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/lib/pdf.lib.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/lib/pdf.lib.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/facture/doc/pdf_crabe.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/facture/doc/pdf_crabe.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/facture/doc/pdf_oursin.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/propale/doc/pdf_azur.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/propale/doc/pdf_azur.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/propale/doc/pdf_jaune.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/commande/doc/pdf_edison.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/commande/doc/pdf_einstein.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/commande/doc/pdf_einstein.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/project/pdf/pdf_baleine.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/project/pdf/pdf_baleine.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/fichinter/doc/pdf_soleil.modules.php'
;
require_once
dirname
(
__FILE__
)
.
'/../../htdocs/core/modules/fichinter/doc/pdf_soleil.modules.php'
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment