Files
awo-hamburg-intranet/module/gallery/gallery.php
2026-02-17 14:56:23 +01:00

24 lines
358 B
PHP

<?
/**
* gallery_show() Modulaufruf Frontend
*
* @param mixed $sitepart
*
* @return
*/
function gallery_show( $sitepart_id ) {
require("show_gallery.inc.php");
}
/**
* gallery_edit() Modulaufruf Backend
*
* @param mixed $sitepart
*
* @return
*/
function gallery_edit() {
require_once('edit_gallery.inc.php');
}
?>