24 lines
370 B
PHP
24 lines
370 B
PHP
|
|
<?
|
||
|
|
/**
|
||
|
|
* slideshow_show() Modulaufruf Frontend
|
||
|
|
*
|
||
|
|
* @param mixed $sitepart
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
function slideshow_show( $sitepart_id ) {
|
||
|
|
require("show_slideshow.inc.php");
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* slideshow_edit() Modulaufruf Backend
|
||
|
|
*
|
||
|
|
* @param mixed $sitepart
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
function slideshow_edit() {
|
||
|
|
require_once('edit_slideshow.inc.php');
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|