ILIAS
Release_4_2_x_branch Revision 61807
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
docs.php
Go to the documentation of this file.
1
<?php
2
if
(!function_exists(
'tidy_get_opt_doc'
))
3
die(
'You need PHP 5.1 and a recent libTidy'
);
4
5
$tidy
=
new
tidy;
6
$config
=
$tidy
->getConfig();
7
8
ksort(
$config
);
9
10
foreach
(
$config
as $opt => $val) {
11
12
if
(!$doc =
$tidy
->getOptDoc($opt))
13
$doc =
'no documentation available!'
;
14
15
$val = (
$tidy
->getOpt($opt) ===
true
) ?
'true'
: $val;
16
$val = (
$tidy
->getOpt($opt) ===
false
) ?
'false'
: $val;
17
18
echo
"<p><b>$opt</b> (default: '$val')<br />"
.
19
"$doc</p><hr />\n"
;
20
}
21
22
?>
Services
XHTMLValidator
validator
docs.php
Generated on Fri Apr 22 2016 19:04:25 for ILIAS by
1.8.1.2 (using
Doxyfile
)