* 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 "".
$title .
" | ";
if(isset($error)) {
print ''.
$error . ' | ';
}
print "";
}
function directory_print_section_end() {
global $color;
echo " | \n";
echo " | \n";
}
function directory_print_all_sections_end() {
echo " ";
}
function directory_printfooter() {
print ' | ';
print ' |
';
}