* Licensed under the GNU GPL. For full terms see the file COPYING. * * $Id: html.php,v 1.1.1.1 2004/01/02 16:00:18 avel Exp $ * * @package plugins * @subpackage directory */ function directory_printheader($title) { global $color; print '
'. $title . ''; print '
'; } function directory_print_all_sections_start() { echo ''; } function directory_print_section_start($title) { global $color, $error; print ""; if(isset($error)) { print ''; } print "\n"; echo "\n"; } function directory_print_all_sections_end() { echo "
". $title . "

'. $error . '

"; } function directory_print_section_end() { global $color; echo "
 
"; } function directory_printfooter() { print '
'; print '
'; }