Files
2026-02-17 14:56:23 +01:00

24 lines
382 B
PHP

<?
/**
* filegallery_show() Modulaufruf Frontend
*
* @param mixed $sitepart
*
* @return
*/
function filegallery_show( $sitepart_id ) {
require("show_filegallery.inc.php");
}
/**
* filegallery_edit() Modulaufruf Backend
*
* @param mixed $sitepart
*
* @return
*/
function filegallery_edit() {
require_once('edit_filegallery.inc.php');
}
?>