mirror of
https://github.com/e107inc/e107.git
synced 2025-01-18 05:09:05 +01:00
15 lines
399 B
PHP
15 lines
399 B
PHP
<?php
|
|
/*
|
|
* Copyright (c) 2012 e107 Inc e107.org, Licensed under GNU GPL (http://www.gnu.org/licenses/gpl.txt)
|
|
* $Id: e_shortcode.php 12438 2011-12-05 15:12:56Z secretr $
|
|
*
|
|
* Gallery Template
|
|
*/
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
$text = e107::getParser()->parseTemplate("{GALLERY_SLIDESHOW}");
|
|
e107::getRender()->tablerender("Gallery",$text,'gallery_slideshow');
|
|
unset($text);
|
|
|
|
?>
|