added namespace
This commit is contained in:
parent
cb1ffbef07
commit
a3d6ea07b4
|
@ -1,4 +1,5 @@
|
|||
<?php
|
||||
namespace LAM\HELP;
|
||||
/*
|
||||
$Id$
|
||||
|
||||
|
@ -33,11 +34,11 @@ $Id$
|
|||
*/
|
||||
|
||||
// generate help entry for translated list attributes
|
||||
$types = LAM\TYPES\getTypes();
|
||||
$types = \LAM\TYPES\getTypes();
|
||||
$entry206Example = "";
|
||||
for ($i = 0; $i < sizeof($types); $i++) {
|
||||
$entry206Example .= "<b>" . LAM\TYPES\getTypeAlias($types[$i]) . ":</b><br>\n";
|
||||
$descriptions = LAM\TYPES\getListAttributeDescriptions($types[$i]);
|
||||
$entry206Example .= "<b>" . \LAM\TYPES\getTypeAlias($types[$i]) . ":</b><br>\n";
|
||||
$descriptions = \LAM\TYPES\getListAttributeDescriptions($types[$i]);
|
||||
$attributes = array_keys($descriptions);
|
||||
for ($a = 0; $a < sizeof($attributes); $a++) {
|
||||
$entry206Example .= "#" . $attributes[$a] . ": " . $descriptions[$attributes[$a]];
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php
|
||||
namespace LAM\ACCOUNTLIST;
|
||||
/*
|
||||
$Id$
|
||||
|
||||
|
|
Loading…
Reference in New Issue