ILIAS  Release_3_10_x_branch Revision 61812
 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 ?>