sitetitle = $PAGE->htmltitle = _("Bildergalerien"); if(!isset($do)) $do = ""; if(!isset($id)) $id = 0; if(!isset($folder)) $folder = 0; if(!isset($page)) $page = 0; if($do == "new" || $do == "add") include_once($global['include_path']."class.admin_image_gallery.php"); $IMG = new image_gallery(); if($do == "" && $id == 0) $output = $IMG->overview($folder); if($do == "" && $id > 0) $output = $IMG->display($id,$page); if($do == "image") $output = $IMG->show($id); if($do == "comment") $output = $IMG->comment($id); if($do == "new") $output = $IMG->gallery_new(); if($do == "add") $output = $IMG->add($upload); $PAGE->render($output); ?>