this code has to do with the media files that can be displayed in showphoto.php
Quote:
elseif ( stristr($bigimage,".wmv") || stristr($bigimage,".mpg") || stristr($bigimage,".avi") ) {
$mmthumb = "{$Globals['idir']}/mm-video.gif";
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/embed-ms.tmpl" );
}
elseif( stristr($bigimage,".fla") || stristr($bigimage,".swf") ) {
$mmthumb = "{$Globals['idir']}/mm-fla.gif";
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/embed-fla.tmpl" );
}
elseif( stristr($bigimage,".mp3") || stristr($bigimage,".wav") || stristr($bigimage,".mid") || stristr($bigimage,".aiff") ) {
$mmthumb = "{$Globals['idir']}/mm-audio.gif";
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/embed-audio.tmpl" );
}
elseif( stristr($bigimage,".rm") ) {
$mmthumb = "{$Globals['idir']}/mm-real.gif";
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/embed-rm.tmpl" );
}
}
|
I'm wondering about this gif file,
mmthumb = "{$Globals['idir']}/mm-video.gif";
To my understanding this is a defualt image that is displayed based on media assets. Can you please tell me the directory these are to reside.
Thank you for your time,
Robert