2014-07-07 16:03:20 +02:00
< ? php
2013-03-23 18:46:00 +01:00
2013-03-23 17:35:44 +01:00
/*
MINIGAL NANO
- A PHP / HTML / CSS based image gallery script
This script and included files are subject to licensing from Creative Commons ( http :// creativecommons . org / licenses / by - sa / 2.5 / )
You may use , edit and redistribute this script , as long as you pay tribute to the original author by NOT removing the linkback to www . minigal . dk ( " Powered by MiniGal Nano x.x.x " )
MiniGal Nano is created by Thomas Rybak
Copyright 2010 by Thomas Rybak
Support : www . minigal . dk
Community : www . minigal . dk / forum
Please enjoy this free script !
2013-03-23 18:46:00 +01:00
Upgraded to https :// github . com / sebsauvage / MinigalNano
by Sébastien SAUVAGE .
2013-03-23 17:35:44 +01:00
*/
2014-11-25 13:58:04 +01:00
error_reporting ( - 1 );
2013-03-23 17:35:44 +01:00
2014-11-25 13:58:04 +01:00
// Do not edit below this section unless you know what you are doing!
2013-03-23 17:35:44 +01:00
2014-02-09 16:43:32 +01:00
header ( 'Content-Type: text/html; charset=UTF-8' ); // We use UTF-8 for proper international characters handling.
2013-03-23 18:46:00 +01:00
$version = " 0.3.7 " ;
2014-11-25 13:58:04 +01:00
ini_set ( " memory_limit " , " 256M " );
2013-03-23 17:35:44 +01:00
2014-11-25 02:11:37 +01:00
require ( " config-default.php " );
include ( " config.php " );
2014-11-25 13:58:04 +01:00
2013-03-23 17:35:44 +01:00
//-----------------------
// DEFINE VARIABLES
//-----------------------
$page_navigation = " " ;
$breadcrumb_navigation = " " ;
$thumbnails = " " ;
$new = " " ;
$images = " " ;
$exif_data = " " ;
$messages = " " ;
2013-03-23 18:46:00 +01:00
$comment = " " ;
2013-03-23 17:35:44 +01:00
//-----------------------
// PHP ENVIRONMENT CHECK
//-----------------------
if ( ! function_exists ( 'exif_read_data' ) && $display_exif == 1 ) {
2014-11-25 13:58:04 +01:00
$display_exif = 0 ;
$messages = " Error: PHP EXIF is not available. Set $display_exif = 0; in config.php to remove this message " ;
2013-03-23 17:35:44 +01:00
}
//-----------------------
// FUNCTIONS
//-----------------------
2014-11-25 13:58:04 +01:00
function padstring ( $name , $length )
{
global $label_max_length ;
2014-11-26 22:04:26 +01:00
if ( ! isset ( $length )) {
2014-11-25 13:58:04 +01:00
$length = $label_max_length ;
2014-11-26 22:04:26 +01:00
}
if ( strlen ( $name ) > $length ) {
2014-11-25 13:58:04 +01:00
return substr ( $name , 0 , $length ) . " ... " ;
2014-11-26 22:04:26 +01:00
}
2014-11-25 13:58:04 +01:00
return $name ;
2013-03-23 17:35:44 +01:00
}
2014-11-25 13:58:04 +01:00
function getfirstImage ( $dirname )
{
$imageName = false ;
2014-11-26 22:04:26 +01:00
$extensions = array ( " jpg " , " png " , " jpeg " , " gif " );
2014-11-25 13:58:04 +01:00
if ( $handle = opendir ( $dirname )) {
while ( false !== ( $file = readdir ( $handle ))) {
2014-11-26 22:04:26 +01:00
if ( $file [ 0 ] == '.' ) {
continue ;
}
$pathinfo = pathinfo ( $file );
if ( empty ( $pathinfo [ 'extension' ])) {
continue ;
}
$ext = strtolower ( $pathinfo [ 'extension' ]);
if ( in_array ( $ext , $extensions )) {
$imageName = $file ;
2014-11-25 13:58:04 +01:00
break ;
2014-11-26 22:04:26 +01:00
}
2014-11-25 13:58:04 +01:00
}
closedir ( $handle );
}
return $imageName ;
2013-03-23 17:35:44 +01:00
}
2014-11-25 13:58:04 +01:00
2014-11-27 16:51:58 +01:00
function parse_fraction ( $v , $round = 0 )
{
list ( $x , $y ) = array_map ( 'intval' , explode ( '/' , $v ));
if ( empty ( $x ) || empty ( $y )) {
return $v ;
}
if ( $x % $y == 0 ) {
return $x / $y ;
}
if ( $y % $x == 0 ) {
return " 1/ " . $y / $x ;
}
return round ( $x / $y , $round );
}
2014-11-25 13:58:04 +01:00
function readEXIF ( $file )
{
2014-11-27 16:51:58 +01:00
$exif_arr = array ();
$exif_data = exif_read_data ( $file );
2014-12-01 16:50:03 +01:00
$exif_val = @ $exif_data [ 'Model' ];
2014-11-27 16:51:58 +01:00
if ( ! empty ( $exif_val )) {
$exif_arr [] = $exif_val ;
}
2014-12-01 16:50:03 +01:00
$exif_val = @ $exif_data [ 'FocalLength' ];
2014-11-27 16:51:58 +01:00
if ( ! empty ( $exif_val )) {
$exif_arr [] = parse_fraction ( $exif_val ) . " mm " ;
}
2014-12-01 16:50:03 +01:00
$exif_val = @ $exif_data [ 'ExposureTime' ];
2014-11-27 16:51:58 +01:00
if ( ! empty ( $exif_val )) {
$exif_arr [] = parse_fraction ( $exif_val , 2 ) . " s " ;
}
2014-12-01 16:50:03 +01:00
$exif_val = @ $exif_data [ 'FNumber' ];
2014-11-27 16:51:58 +01:00
if ( ! empty ( $exif_val )) {
$exif_arr [] = " f " . parse_fraction ( $exif_val );
}
2014-12-01 16:50:03 +01:00
$exif_val = @ $exif_data [ 'ISOSpeedRatings' ];
2014-11-27 16:51:58 +01:00
if ( ! empty ( $exif_val )) {
$exif_arr [] = " ISO " . $exif_val ;
}
if ( count ( $exif_arr ) > 0 ) {
return " :: " . implode ( " | " , $exif_arr );
}
2013-03-23 17:35:44 +01:00
}
2014-11-25 13:58:04 +01:00
function checkpermissions ( $file )
{
global $messages ;
2014-11-26 18:43:29 +01:00
if ( ! is_readable ( $file )) {
$messages = " At least one file or folder has wrong permissions. "
. " Learn how to <a href='http://minigal.dk/faq-reader/items/ "
. " how-do-i-change-file-permissions-chmod.html' target='_blank'> "
. " set file permissions</a> " ;
}
2013-03-23 17:35:44 +01:00
}
2014-11-25 13:58:04 +01:00
if ( ! defined ( " GALLERY_ROOT " ))
define ( " GALLERY_ROOT " , " " );
2013-03-23 18:46:00 +01:00
$requestedDir = '' ;
2014-11-25 13:58:04 +01:00
if ( ! empty ( $_GET [ 'dir' ]))
$requestedDir = $_GET [ 'dir' ];
$thumbdir = rtrim ( 'photos/' . $requestedDir , '/' );
2013-03-23 18:46:00 +01:00
2014-06-22 22:13:12 +02:00
//$thumbdir = str_replace('/..', '', $thumbdir); // Prevent directory traversal attacks.
2014-11-25 13:58:04 +01:00
if ( strstr ( $thumbdir , '..' ) !== false ) {
$requestedDir = '' ;
$thumbdir = rtrim ( 'photos/' , '/' );
2014-06-22 22:13:12 +02:00
}
2013-03-23 17:35:44 +01:00
$currentdir = GALLERY_ROOT . $thumbdir ;
//-----------------------
// READ FILES AND FOLDERS
//-----------------------
$files = array ();
$dirs = array ();
2014-12-01 18:16:08 +01:00
$img_captions = array ();
2014-11-25 13:58:04 +01:00
if ( is_dir ( $currentdir ) && $handle = opendir ( $currentdir )) {
2014-12-01 18:16:08 +01:00
// 1. LOAD CAPTIONS
$caption_filename = " $currentdir /captions.txt " ;
if ( is_readable ( $caption_filename )) {
$caption_handle = fopen ( $caption_filename , " rb " );
while ( ! feof ( $caption_handle )) {
$caption_line = fgetss ( $caption_handle );
if ( empty ( $caption_line )) {
continue ;
}
list ( $img_file , $img_text ) = explode ( '|' , $caption_line );
$img_captions [ $img_file ] = trim ( $img_text );
}
fclose ( $caption_handle );
}
2014-11-25 13:58:04 +01:00
while ( false !== ( $file = readdir ( $handle )) && ! in_array ( $file , $SkipObjects )) {
2014-12-01 18:16:08 +01:00
// 2. LOAD FOLDERS
2014-11-25 13:58:04 +01:00
if ( is_dir ( $currentdir . " / " . $file )) {
if ( $file != " . " && $file != " .. " ) {
checkpermissions ( $currentdir . " / " . $file ); // Check for correct file permission
// Set thumbnail to folder.jpg if found:
if ( file_exists ( $currentdir . '/' . $file . '/folder.jpg' )) {
$linkParams = http_build_query (
array ( 'dir' => ltrim ( " $requestedDir / $file " , '/' )),
'' ,
'&'
);
$linkUrl = " ? $linkParams " ;
$imgParams = http_build_query (
array (
'filename' => " $currentdir / $file /folder.jpg " ,
'size' => $thumb_size
),
'' ,
'&'
);
$imgUrl = GALLERY_ROOT . " createthumb.php? $imgParams " ;
$dirs [] = array (
" name " => $file ,
" date " => filemtime ( $currentdir . " / " . $file . " /folder.jpg " ),
" html " => " <li><a href= \" { $linkUrl } \" ><em> " . padstring ( $file , $label_max_length ) . " </em><span></span><img src= \" { $imgUrl } \" alt= \" $label_loading\ " /></ a ></ li > "
);
} else {
// Set thumbnail to first image found (if any):
unset ( $firstimage );
$firstimage = getfirstImage ( " $currentdir / " . $file );
if ( $firstimage != " " ) {
$linkParams = http_build_query (
array ( 'dir' => ltrim ( " $requestedDir / $file " , '/' )),
'' ,
'&'
);
$linkUrl = " ? $linkParams " ;
$imgParams = http_build_query (
array (
'filename' => " $thumbdir / $file / $firstimage " ,
'size' => $thumb_size
),
'' ,
'&'
);
$imgUrl = GALLERY_ROOT . " createthumb.php? $imgParams " ;
$dirs [] = array (
" name " => $file ,
" date " => filemtime ( $currentdir . " / " . $file ),
" html " => " <li><a href= \" { $linkUrl } \" ><em> " . padstring ( $file , $label_max_length ) . " </em><span></span><img src= \" { $imgUrl } \" alt=' $label_loading ' /></a></li> "
);
} else {
// If no folder.jpg or image is found, then display default icon:
$linkParams = http_build_query (
array ( 'dir' => ltrim ( " $requestedDir / $file " , '/' )),
'' ,
'&'
);
$linkUrl = " ? $linkParams " ;
$imgUrl = GALLERY_ROOT . 'images/folder_' . strtolower ( $folder_color ) . '.png' ;
$dirs [] = array (
" name " => $file ,
" date " => filemtime ( $currentdir . " / " . $file ),
" html " => " <li><a href= \" { $linkUrl } \" ><em> " . padstring ( $file , $label_max_length ) . " </em><span></span><img src= \" { $imgUrl } \" width=' $thumb_size ' height=' $thumb_size ' alt=' $label_loading ' /></a></li> "
);
}
}
}
}
// 3. LOAD FILES
if ( $file != " . " && $file != " .. " && $file != " folder.jpg " ) {
if ( $display_filename )
$filename_caption = " <em> " . padstring ( $file , $label_max_length ) . " </em> " ;
else
$filename_caption = " " ;
// JPG, GIF and PNG
if ( preg_match ( " /.jpg $ |.gif $ |.png $ /i " , $file )) {
//Read EXIF
if ( ! array_key_exists ( $file , $img_captions )) {
if ( $display_exif == 1 ) {
$exifReaden = readEXIF ( $currentdir . " / " . $file );
//Add to the caption all the EXIF information
$img_captions [ $file ] = $file . $exifReaden ;
} else {
//If no EXIF, just use the filename as caption
$img_captions [ $file ] = $file ;
}
}
// Read the optionnal image title and caption in html file (image.jpg --> image.jpg.html)
// Format: title::caption
// Example: My cat::My cat like to <i>roll</i> on the floor.
// If file is not provided, image filename will be used instead.
checkpermissions ( $currentdir . " / " . $file );
if ( is_file ( $currentdir . '/' . $file . '.html' ))
$img_captions [ $file ] = $file . '::' . htmlspecialchars ( file_get_contents ( $currentdir . '/' . $file . '.html' ), ENT_QUOTES );
$linkUrl = str_replace ( '%2F' , '/' , rawurlencode ( " $currentdir / $file " ));
$imgParams = http_build_query (
array ( 'filename' => " $thumbdir / $file " , 'size' => $thumb_size ),
'' ,
'&' );
$imgUrl = GALLERY_ROOT . " createthumb.php? $imgParams " ;
if ( $lazyload )
$imgopts = " class= \" b-lazy \" src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== data-src= \" $imgUrl\ " " ;
else
$imgopts = " src= \" { $imgUrl } \" " ;
$files [] = array (
" name " => $file ,
" date " => filemtime ( $currentdir . " / " . $file ),
" size " => filesize ( $currentdir . " / " . $file ),
" html " => " <li><a href= \" { $linkUrl } \" rel='lightbox[billeder]' title= \" " . htmlentities ( $img_captions [ $file ]) . " \" ><img $imgopts alt=' $label_loading ' /></a> " . $filename_caption . " </li> " );
}
// Other filetypes
$extension = " " ;
if ( preg_match ( " /.pdf $ /i " , $file )) $extension = " PDF " ; // PDF
if ( preg_match ( " /.zip $ /i " , $file )) $extension = " ZIP " ; // ZIP archive
if ( preg_match ( " /.rar $ |.r[0-9] { 2,}/i " , $file )) $extension = " RAR " ; // RAR Archive
if ( preg_match ( " /.tar $ /i " , $file )) $extension = " TAR " ; // TARball archive
if ( preg_match ( " /.gz $ /i " , $file )) $extension = " GZ " ; // GZip archive
if ( preg_match ( " /.doc $ |.docx $ /i " , $file )) $extension = " DOCX " ; // Word
if ( preg_match ( " /.ppt $ |.pptx $ /i " , $file )) $extension = " PPTX " ; //Powerpoint
if ( preg_match ( " /.xls $ |.xlsx $ /i " , $file )) $extension = " XLXS " ; // Excel
if ( preg_match ( " /.ogv $ |.mp4 $ |.mpg $ |.mpeg $ |.mov $ |.avi $ |.wmv $ |.flv $ |.webm $ /i " , $file )) $extension = " VIDEO " ; // video files
if ( preg_match ( " /.aiff $ |.aif $ |.wma $ |.aac $ |.flac $ |.mp3 $ |.ogg $ |.m4a $ /i " , $file )) $extension = " AUDIO " ; // audio files
if ( $extension != " " ) {
$files [] = array (
" name " => $file ,
" date " => filemtime ( $currentdir . " / " . $file ),
" size " => filesize ( $currentdir . " / " . $file ),
" html " => " <li><a href=' $currentdir / $file ' title=' $file '><em-pdf> " . padstring ( $file , 20 ) . " </em-pdf><span></span><img src=' " . GALLERY_ROOT . " images/filetype_ " . $extension . " .png' width=' $thumb_size ' height=' $thumb_size ' alt=' $file ' /></a> $filename_caption </li> " );
}
}
}
closedir ( $handle );
} else {
die ( " ERROR: Could not open " . htmlspecialchars ( stripslashes ( $currentdir )) . " for reading! " );
}
2013-03-23 17:35:44 +01:00
//-----------------------
// SORT FILES AND FOLDERS
//-----------------------
2014-11-25 13:58:04 +01:00
if ( sizeof ( $dirs ) > 0 ) {
foreach ( $dirs as $key => $row ) {
if ( $row [ " name " ] == " " ) {
unset ( $dirs [ $key ]); //Delete empty array entries
continue ;
}
$name [ $key ] = strtolower ( $row [ 'name' ]);
$date [ $key ] = strtolower ( $row [ 'date' ]);
}
@ array_multisort ( $$sorting_folders , $sortdir_folders , $name , $sortdir_folders , $dirs );
2013-03-23 17:35:44 +01:00
}
2014-11-25 13:58:04 +01:00
if ( sizeof ( $files ) > 0 ) {
foreach ( $files as $key => $row ) {
if ( $row [ " name " ] == " " ) {
unset ( $files [ $key ]); //Delete empty array entries
continue ;
}
$name [ $key ] = strtolower ( $row [ 'name' ]);
$date [ $key ] = strtolower ( $row [ 'date' ]);
$size [ $key ] = strtolower ( $row [ 'size' ]);
}
@ array_multisort ( $$sorting_files , $sortdir_files , $name , SORT_ASC , $files );
2013-03-23 17:35:44 +01:00
}
//-----------------------
// OFFSET DETERMINATION
//-----------------------
2014-11-25 13:58:04 +01:00
if ( ! isset ( $_GET [ " page " ]))
$_GET [ " page " ] = 1 ;
$offset_start = ( $_GET [ " page " ] * $thumbs_pr_page ) - $thumbs_pr_page ;
$offset_end = $offset_start + $thumbs_pr_page ;
if ( $offset_end > sizeof ( $dirs ) + sizeof ( $files ))
$offset_end = sizeof ( $dirs ) + sizeof ( $files );
if ( $_GET [ " page " ] == " all " || $lazyload ) {
$offset_start = 0 ;
$offset_end = sizeof ( $dirs ) + sizeof ( $files );
}
2013-03-23 17:35:44 +01:00
//-----------------------
// PAGE NAVIGATION
//-----------------------
2014-11-25 13:58:04 +01:00
if ( ! $lazyload && sizeof ( $dirs ) + sizeof ( $files ) > $thumbs_pr_page ) {
$page_navigation .= " $label_page " ;
for ( $i = 1 ; $i <= ceil (( sizeof ( $files ) + sizeof ( $dirs )) / $thumbs_pr_page ); $i ++ ) {
if ( $_GET [ " page " ] == $i )
$page_navigation .= " $i " ;
else
$page_navigation .= " <a href='?dir= " . $requestedDir . " &page= " . ( $i ) . " '> " . $i . " </a> " ;
if ( $i != ceil (( sizeof ( $files ) + sizeof ( $dirs )) / $thumbs_pr_page ))
$page_navigation .= " | " ;
}
//Insert link to view all images
if ( $_GET [ " page " ] == " all " )
$page_navigation .= " | $label_all " ;
else
$page_navigation .= " | <a href='?dir= " . $requestedDir . " &page=all'> $label_all </a> " ;
2013-03-23 17:35:44 +01:00
}
//-----------------------
// BREADCRUMB NAVIGATION
//-----------------------
2014-11-25 13:58:04 +01:00
if ( $requestedDir != " " ) {
$breadcrumb_navigation .= " <a href='?dir='> " . $label_home . " </a> $breadcrumb_separator " ;
$navitems = explode ( " / " , $_REQUEST [ 'dir' ]);
for ( $i = 0 ; $i < sizeof ( $navitems ); $i ++ ) {
if ( $i == sizeof ( $navitems ) - 1 ) {
$breadcrumb_navigation .= $navitems [ $i ];
} else {
$breadcrumb_navigation .= " <a href='?dir= " ;
for ( $x = 0 ; $x <= $i ; $x ++ ) {
$breadcrumb_navigation .= $navitems [ $x ];
if ( $x < $i )
$breadcrumb_navigation .= " / " ;
}
$breadcrumb_navigation .= " '> " . $navitems [ $i ] . " </a> $breadcrumb_separator " ;
}
}
} else {
$breadcrumb_navigation .= $label_home ;
}
2013-03-23 17:35:44 +01:00
//Include hidden links for all images BEFORE current page so lightbox is able to browse images on different pages
2014-11-25 13:58:04 +01:00
for ( $y = 0 ; $y < $offset_start - sizeof ( $dirs ); $y ++ ) {
$breadcrumb_navigation .= " <a href=' " . $currentdir . " / " . $files [ $y ][ " name " ] . " ' class='hidden' title=' " . $img_captions [ $files [ $y ][ " name " ]] . " '></a> " ;
2013-03-23 17:35:44 +01:00
}
//-----------------------
// DISPLAY FOLDERS
//-----------------------
if ( count ( $dirs ) + count ( $files ) == 0 ) {
2014-11-25 13:58:04 +01:00
$thumbnails .= " <li> $label_noimages </li> " ; //Display 'no images' text
if ( $currentdir == " photos " )
$messages = " It looks like you have just installed MiniGal Nano. Please run the <a href='system_check.php'>system check tool</a> " ;
2013-03-23 17:35:44 +01:00
}
$offset_current = $offset_start ;
2014-11-25 13:58:04 +01:00
for ( $x = $offset_start ; $x < sizeof ( $dirs ) && $x < $offset_end ; $x ++ ) {
$offset_current ++ ;
$thumbnails .= $dirs [ $x ][ " html " ];
2013-03-23 17:35:44 +01:00
}
//-----------------------
// DISPLAY FILES
//-----------------------
2014-11-25 13:58:04 +01:00
for ( $i = $offset_start - sizeof ( $dirs ); $i < $offset_end && $offset_current < $offset_end ; $i ++ ) {
if ( $i >= 0 ) {
$offset_current ++ ;
$thumbnails .= $files [ $i ][ " html " ];
}
2013-03-23 17:35:44 +01:00
}
//Include hidden links for all images AFTER current page so lightbox is able to browse images on different pages
2014-11-25 13:58:04 +01:00
if ( $i < 0 )
$i = 1 ;
for ( $y = $i ; $y < sizeof ( $files ); $y ++ ) {
$page_navigation .= " <a href=' " . $currentdir . " / " . $files [ $y ][ " name " ] . " ' class='hidden' title=' " . $img_captions [ $files [ $y ][ " name " ]] . " '></a> " ;
2013-03-23 17:35:44 +01:00
}
//-----------------------
// OUTPUT MESSAGES
//-----------------------
if ( $messages != " " ) {
2014-11-25 13:58:04 +01:00
$messages = " <div id= \" topbar \" > " . $messages . " <a href= \" # \" onclick= \" document.getElementById('topbar').style.display = 'none'; \" ;><img src= \" images/close.png \" /></a></div> " ;
2013-03-23 17:35:44 +01:00
}
2013-03-23 18:46:00 +01:00
// Read folder comment.
$comment_filepath = $currentdir . $file . " /comment.html " ;
2014-11-25 13:58:04 +01:00
if ( file_exists ( $comment_filepath )) {
$fd = fopen ( $comment_filepath , " r " );
$comment = fread ( $fd , filesize ( $comment_filepath ));
fclose ( $fd );
2013-03-23 18:46:00 +01:00
}
2013-03-23 17:35:44 +01:00
2014-11-25 13:58:04 +01:00
//PROCESS TEMPLATE FILE
if ( GALLERY_ROOT != " " )
$templatefile = GALLERY_ROOT . " templates/integrate.html " ;
else
$templatefile = " templates/ " . $templatefile . " .html " ;
if ( ! $fd = fopen ( $templatefile , " r " )) {
echo " Template " . htmlspecialchars ( stripslashes ( $templatefile )) . " not found! " ;
exit ();
} else {
$template = fread ( $fd , filesize ( $templatefile ));
fclose ( $fd );
$template = stripslashes ( $template );
$template = preg_replace ( " /<% title %>/ " , $title , $template );
$template = preg_replace ( " /<% messages %>/ " , $messages , $template );
$template = preg_replace ( " /<% author %>/ " , $author , $template );
$template = preg_replace ( " /<% gallery_root %>/ " , GALLERY_ROOT , $template );
$template = preg_replace ( " /<% images %>/ " , " $images " , $template );
$template = preg_replace ( " /<% thumbnails %>/ " , " $thumbnails " , $template );
$template = preg_replace ( " /<% breadcrumb_navigation %>/ " , " $breadcrumb_navigation " , $template );
$template = preg_replace ( " /<% page_navigation %>/ " , " $page_navigation " , $template );
$template = preg_replace ( " /<% folder_comment %>/ " , " $comment " , $template );
$template = preg_replace ( " /<% bgcolor %>/ " , " $backgroundcolor " , $template );
$template = preg_replace ( " /<% gallery_width %>/ " , " $gallery_width " , $template );
$template = preg_replace ( " /<% version %>/ " , " $version " , $template );
echo " $template " ;
}