Yaffs site version 1.1
[yaffs-website] / vendor / drush / drush / commands / core / outputformat / html.tpl.php
1 <html>
2 <head><title>Drush help</title><style>dt {font-size: 110%; font-weight: bold}</style></head>
3 <body>
4   <h3>Global Options (see `drush topic core-global-options` for the full list)</h3>
5   <table><?php
6     foreach ($global_options_rows as $key => $row) {
7       print '<tr>';
8       foreach ($row as $value) {
9         print  "<td>" . htmlspecialchars($value) . "</td>\n";
10       }
11       print "</tr>\n";
12     } ?>
13   </table>
14   <h3>Command list</h3>
15   <table><?php
16     foreach ($input as $key => $command) {
17       print "  <tr><td><a href=\"#$key\">$key</a></td><td>" . $command['description'] . "</td></tr>\n";
18     } ?>
19   </table>
20 <h3>Command detail</h3>
21 <dl><?php
22       foreach ($input as $key => $command) {
23         print "\n<a name=\"$key\"></a><dt>$key</dt><dd><pre>\n";
24         drush_core_helpsingle($key);
25         print "</pre></dd>\n";
26       }
27     ?>
28 </body>
29 </html>