I have "written" a new RT that calls MooShow, an excellent little JS/CSS gallery written by Stuart Eaton over at -> http://www.mooshow.eatpixels.com/
It's based on moo.fx, something I can reccomend -> http://moofx.mad4milk.net/
A LOT of the PHP in the {MOOSHOW} RT is based on PHP by stuart, so 90% of the credit to him.
The RT calls images from the MyGallery Mod and displays them using MooShow.
At present it only handles single albums:-
{MOOSHOW:album name:speed:fadespeed:topnav:overlayNav:dropshadow:captions:border
But if one of you lovely people can help me fix it, I will make it handle all albums, with links underneath the gallery.
The problem is that when the gallery loads it correctly loads the 1st image but refuses to load further images and just gets stuck. Have a look here, try clicking the numbers at the top of the page.
http://www.jamesryder.co.uk/clients/mooshow
Can anyone help?
TO get the RT "working" you will need to install:-
MyGallery MOD -> there are lots of topics out there devoted to getting this to work.
Download MooShow and Moo.fx. http://www.mooshow.eatpixels.com/ is a good place to start.
You will then need the following in frontend_render.
Code: Select all
<?php
//----------------------------------------------------------------------------------------------
// {MOOSHOW}
// AUTHOR: James Ryder
// DESCRIPTION: Uses the excellent Mooshow slideshow extension by Stuart Eaton of eatpixels.com to show content from MyGallery
// extension.
// INSTALLATION: Put the code in frontend_render (for example in a file called mooshow.php)
// Note: If the article content part contains replacement tags (for example {SITE}),
// they will not be replaced because code in frontend_render is executed after those
// replacement tags already have been processed. To fix, put the code in
// content.article.inc.php instead.
// USAGE: {MOOSHOW:ALL or album name:speed:fadespeed:topnav:overlayNav:dropshadow:captions:border:copyright:IPTC}
//----------------------------------------------------------------------------------------------
function mooshow($albumName,$speed,$fadespeed,$topnav,$overlay,$dropshad,$captions,$border,$copy,$IPTC,$db) {
if ($albumName == 'ALL' ) // alternate sql searches for when $albumName is ALL or Album Name;
{
$sql = "SELECT * FROM `phpwcms_gal_albums` WHERE `pic_count` >'0' order by album_order ASC"; // Query for all Albums
} else {
$sql = "SELECT * FROM `phpwcms_gal_albums` WHERE `title` = '".$albumName."'"; // Query for single Album
}
if($result = @mysql_query($sql, $db) or die ("<br><b>Error!</b><br>".mysql_error($db)) )
{
$num = mysql_num_rows($result);
for ($i=0; $i <$num; $i++);
{
$row = mysql_fetch_assoc($result);
$path = $imgpath.($row['id']);
$output = getImageNames($row['id'],$row['title']);
}
}
$path = $row['id'];
$show = $row['title'];
$show = str_replace(" ", "", $show);
$output .= "<script type=\"text/javascript\" src=\"mooshow/mooshow.1.04.js\"></script>";
$output .= "<!-- mooShow html STARTS here : mooShow is by Stuart Eaton of eatpixels.com-->
<div id=\"".$show."\" class=\"mooshow\">
this.speed='".$speed."';
this.fadeSpeed='".$fadespeed."';
this.topNav='".$topnav."';
this.overlayNav='".$overlay."';
this.dropShadow='".$dropshad."';
this.captions='".$captions."';
this.border='".$border."';
this.copyright='".$copy."';
this.IPTCinfo='".$IPTC."'
</div>
<!-- mooShow html ENDS here -->
<p><br /></p>";
// create the navigation for multiple albums if present
$num = mysql_num_rows($result);
if ($num > 1) {
$first = ($row['title']);
$first = str_replace(" ", "", $first);
for ($i=0; $i <$num; $i++);
{
$row = mysql_fetch_assoc($result);
$show = $row['title'];
$show = str_replace(" ", "", $show);
$output .= "<a href=\"#".$i."\" onclick=\"mooShows['".$first."'].switchContent('".$show."');\">".$row['title']." Album </a> \n";
}
}
return $output;
}
function getImageNames($path, $galleryName) {
$imgpath = "include/inc_module/mygallery/images/";
$galleryName = str_replace(" ", "", $galleryName);
$output = "<script type=\"text/javascript\">var showsIE = new Array(\"".$galleryName."\");</script>
<script> var ".$galleryName." = new Array( "; //var showsIE is for the benefit of IE 5.5
$path = $imgpath.$path;
$files = array();
$fileNames = array();
$i = 0;
if (is_dir($path)) {
if ($dh = opendir($path)) {
while (($file = readdir($dh)) !== false) {
if ($file == "." || $file == ".." || $file == ".DS_Store" || $file == "thumbs.db" || strstr($file,'thumb_')) continue;
$fullpath = $path . "/" . $file;
$fkey = strtolower($file);
while (array_key_exists($fkey,$fileNames)) $fkey .= " ";
$a = stat($fullpath);
$files[$fkey]['size'] = $a['size'];
if ($a['size'] == 0) $files[$fkey]['sizetext'] = "-";
else if ($a['size'] > 1024) $files[$fkey]['sizetext'] = (ceil($a['size']/1024*100)/100) . " K";
else if ($a['size'] > 1024*1024) $files[$fkey]['sizetext'] = (ceil($a['size']/(1024*1024)*100)/100) . " Mb";
else $files[$fkey]['sizetext'] = $a['size'] . " bytes";
$files[$fkey]['name'] = $file;
$files[$fkey]['type'] = filetype($fullpath);
$fileNames[$i++] = $fkey;
}
closedir($dh);
} else die ("Cannot open directory: $path");
} else die ("Path is not a directory: $path");
sort($fileNames,SORT_STRING);
$sortedFiles = array();
$i = 0;
foreach($fileNames as $f) $sortedFiles[$i++] = $files[$f];
foreach ($sortedFiles as $file) {
// get image sizes
list($width, $height, $type, $attr) = getimagesize("$path/$file[name]", &$info);
$size = $file[sizetext];
$iptc = iptcparse($info["APP13"]);
// iptc info
$iptc = iptcparse($info["APP13"]);
$title = $iptc['2#005'][0];
$description = $iptc['2#120'][0];
$description = str_replace("\r", "<br/>", $description);
$description = addslashes($description);
$keywords = $iptc['2#025'][0];
$author = $iptc['2#080'][0];
$copyright = $iptc['2#116'][0];
$output .= "new Array('$path/$file[name]', '$width', '$height', '$size', '$title', '$author', '$copyright', '$description'), \n";
}
$output .="new Array('', '') \n";
$output .="); \n";
$output .="</script> \n";
return $output;
}
// -------------------------------------------------------------
$content["all"] = preg_replace('/\{MOOSHOW:(.*?):(.*?):(.*?):(.*?):(.*?):(.*?):(.*?):(.*?):(.*?):(.*?)\}/ie', 'mooshow("$1","$2","$3","$4","$5","$6","$7","$8","$9","$10",$db);', $content["all"]);
// -------------------------------------------------------------
?>
I dont have much time to answer questions, but should be able to find some time if someone can help -

Thanks - Mac
PS. My PHP is VERY bad, 1st time and all that -
