215f27ccc888355a984665ae5b880a44d2ebaf8a
[yaffs-website] / html.inc
1 <?php
2
3 /**
4 * Output formatter 'html'
5 *
6 * @param $data
7 *
8 * @param $metadata
9 *   '' -
10 *   '' -
11 */
12 class drush_outputformat_html extends drush_outputformat {
13   function format($input, $metadata) {
14     $input = drush_help_visible($input);
15     $global_options_command = drush_global_options_command(TRUE);
16     $global_options_rows = drush_format_help_section($global_options_command, 'options');
17     ob_start();
18     require_once __DIR__ . '/html.tpl.php';
19     $return = ob_get_clean();
20     return $return;
21   }
22 }
23