system
[
class tree: system
] [
index: system
] [
all elements
]
system
Packages:
no package
html
system
Source for file system.class.php
Documentation is available at
system.class.php
<?php
/**
* Attribut d'une balise.
*
*
@package
system
*
@author
Alain Defrance
*/
class
wpmSystem
{
static
private
$currentNum
=
1
;
static
private
$nbIdent
=
0
;
static
public
function
getIndent
(
)
{
for
(
$i
=
0
;
$i
<
self
::
$nbIdent
;
$i
++
)
{
$toReturn
.=
"\t"
;
}
return
$toReturn
;
}
static
public
function
identUp
(
)
{
self
::
$nbIdent
++
;
}
static
public
function
identDown
(
)
{
self
::
$nbIdent
--
;
}
static
public
function
endl
(
)
{
return
"\r\n"
;
}
static
public
function
pickNum
(
)
{
return
self
::
$currentNum
++
;
}
}
;
?>
Documentation generated on Fri, 04 Jul 2008 23:38:45 +0200 by
phpDocumentor 1.4.0a2