22 lines
511 B
PHP
22 lines
511 B
PHP
<?php
|
|
use_helper('stText','stPhotoGallery', 'stProductImage', 'stUrl');
|
|
|
|
st_theme_use_stylesheet('appWishesPlugin.css');
|
|
|
|
$smarty->assign('config', $config);
|
|
|
|
$smarty->assign('configBanner', $configBanner);
|
|
|
|
$filename = $config['wishes_responsive_active_image'];
|
|
|
|
$filename_array = explode(".", $filename);
|
|
|
|
if ($filename_array[1] == 'mp4'){
|
|
$smarty->assign("type", "video");
|
|
}else{
|
|
$smarty->assign("type", "image");
|
|
}
|
|
|
|
$smarty->assign("filename", $filename);
|
|
|
|
$smarty->display('show_wishes_responsive.html'); |