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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
996bc94a
Commit
996bc94a
authored
16 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
doxygen
parent
dbe94526
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/lib/functions.lib.php
+17
-17
17 additions, 17 deletions
htdocs/lib/functions.lib.php
with
17 additions
and
17 deletions
htdocs/lib/functions.lib.php
+
17
−
17
View file @
996bc94a
...
...
@@ -132,24 +132,24 @@ function dol_escape_js($stringtoescape)
/**
\brief Envoi des messages dolibarr dans un fichier ou dans syslog
Pour fichier: fichier defini par SYSLOG_FILE
Pour syslog: facility defini par SYSLOG_FACILITY
\param message Message a tracer. Ne doit pas etre traduit si level = LOG_ERR
\param level Niveau de l'erreur
\remarks Cette fonction n'a un effet que si le module syslog est activ
�
.
Warning, les fonctions syslog sont buggu
�
s sous Windows et g
�n�
rent des
fautes de protection m
�
moire. Pour r
�
soudre, utiliser le loggage fichier,
au lieu du loggage syslog (configuration du module).
Si SYSLOG_FILE_NO_ERROR d
�
fini, on ne g
�
re pas erreur ecriture log
\remarks On Windows LOG_ERR=4, LOG_WARNING=5, LOG_NOTICE=LOG_INFO=LOG_DEBUG=6
On Linux LOG_ERR=3, LOG_WARNING=4, LOG_INFO=6, LOG_DEBUG=7
*
\brief Envoi des messages dolibarr dans un fichier ou dans syslog
*
Pour fichier: fichier defini par SYSLOG_FILE
*
Pour syslog: facility defini par SYSLOG_FACILITY
*
\param message Message a tracer. Ne doit pas etre traduit si level = LOG_ERR
*
\param level Niveau de l'erreur
*
\remarks Cette fonction n'a un effet que si le module syslog est activ
e
.
*
Warning, les fonctions syslog sont buggu
e
s sous Windows et g
ene
rent des
*
fautes de protection m
e
moire. Pour r
e
soudre, utiliser le loggage fichier,
*
au lieu du loggage syslog (configuration du module).
*
Si SYSLOG_FILE_NO_ERROR d
e
fini, on ne g
e
re pas erreur ecriture log
*
\remarks On Windows LOG_ERR=4, LOG_WARNING=5, LOG_NOTICE=LOG_INFO=LOG_DEBUG=6
*
On Linux LOG_ERR=3, LOG_WARNING=4, LOG_INFO=6, LOG_DEBUG=7
*/
function
dolibarr_syslog
(
$message
,
$level
=
LOG_INFO
)
{
global
$conf
,
$user
,
$langs
;
if
(
isset
(
$conf
->
syslog
->
enabled
)
&&
$conf
->
syslog
->
enabled
)
if
(
!
empty
(
$conf
->
syslog
->
enabled
))
{
//print $level.' - '.$conf->global->SYSLOG_LEVEL.' - '.$conf->syslog->enabled." \n";
if
(
$level
>
$conf
->
global
->
SYSLOG_LEVEL
)
return
;
...
...
@@ -202,7 +202,7 @@ function dolibarr_syslog($message, $level=LOG_INFO)
}
else
{
//define_syslog_variables();
d�ja
d
�
fin
it dans
master.inc.php
//define_syslog_variables();
already
d
e
fin
ed in
master.inc.php
if
(
defined
(
"MAIN_SYSLOG_FACILITY"
)
&&
MAIN_SYSLOG_FACILITY
)
{
$facility
=
MAIN_SYSLOG_FACILITY
;
...
...
@@ -544,7 +544,8 @@ function dolibarr_getdate($timestamp,$fast=false)
/**
* Retourne une date fabriquee depuis infos.
* Remplace la fonction mktime non implementee sous Windows si annee < 1970
* @param hour Hour (can be -1 for undefined)
* PHP mktime is restricted to the years 1901-2038 on Unix and 1970-2038 on Windows
* @param hour Hour (can be -1 for undefined)
* @param minute Minute (can be -1 for undefined)
* @param second Second (can be -1 for undefined)
* @param month Month
...
...
@@ -553,7 +554,6 @@ function dolibarr_getdate($timestamp,$fast=false)
* @param gm Time gm
* @param check No check on parameters (Can use day 32, etc...)
* @return timestamp Date en timestamp, '' if error
* @remarks PHP mktime is restricted to the years 1901-2038 on Unix and 1970-2038 on Windows
*/
function
dolibarr_mktime
(
$hour
,
$minute
,
$second
,
$month
,
$day
,
$year
,
$gm
=
0
,
$check
=
1
)
{
...
...
@@ -2992,7 +2992,7 @@ function is_emtpy_folder($folder){
closedir
(
$handle
);
}
else
return
true
;
// Le rpertoire n'existe pas
return
true
;
// Le r
�
pertoire n'existe pas
}
/**
...
...
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