Your IP : 216.73.216.240
<?php
/*------------------------------------------------------------------------
# mod_magiczoomplus - Magic Zoom Plus for Joomla
# ------------------------------------------------------------------------
# Magic Toolbox
# Copyright 2011 MagicToolbox.com. All Rights Reserved.
# @license - http://www.opensource.org/licenses/artistic-license-2.0 Artistic License 2.0 (GPL compatible)
# Website: http://www.magictoolbox.com/magiczoomplus/modules/joomla/
# Technical Support: http://www.magictoolbox.com/contact/
/*-------------------------------------------------------------------------*/
// no direct access
defined('_JEXEC') or die('Restricted access.');
if(!defined('MagicZoomPlusModuleCoreClassLoaded')) {
define('MagicZoomPlusModuleCoreClassLoaded', true);
require_once(dirname(__FILE__) . '/magictoolbox.params.class.php');
/**
* MagicZoomPlusModuleCoreClass
*
*/
class MagicZoomPlusModuleCoreClass {
/**
* MagicToolboxParamsClass class
*
* @var MagicToolboxParamsClass
*
*/
var $params;
/**
* Tool type
*
* @var string
*
*/
var $type = 'standard';
/**
* Constructor
*
* @return void
*/
function MagicZoomPlusModuleCoreClass() {
$this->params = new MagicToolboxParamsClass();
$this->loadDefaults();
$this->params->setMapping(array(
'show-title' => array('disable' => 'false'),
'selectors-effect' => array('disable' => 'false'),
'disable-zoom' => array('Yes' => 'true', 'No' => 'false'),
'disable-expand' => array('Yes' => 'true', 'No' => 'false'),
'keep-thumbnail' => array('Yes' => 'true', 'No' => 'false'),
'show-loading' => array('Yes' => 'true', 'No' => 'false'),
'slideshow-loop' => array('Yes' => 'true', 'No' => 'false'),
'keyboard' => array('Yes' => 'true', 'No' => 'false'),
'keyboard-ctrl' => array('Yes' => 'true', 'No' => 'false'),
'drag-mode' => array('Yes' => 'true', 'No' => 'false'),
'always-show-zoom' => array('Yes' => 'true', 'No' => 'false'),
'smoothing' => array('Yes' => 'true', 'No' => 'false'),
'opacity-reverse' => array('Yes' => 'true', 'No' => 'false'),
'click-to-activate' => array('Yes' => 'true', 'No' => 'false'),
'click-to-deactivate' => array('Yes' => 'true', 'No' => 'false'),
'preload-selectors-small' => array('Yes' => 'true', 'No' => 'false'),
'preload-selectors-big' => array('Yes' => 'true', 'No' => 'false'),
'zoom-fade' => array('Yes' => 'true', 'No' => 'false'),
'move-on-click' => array('Yes' => 'true', 'No' => 'false'),
'preserve-position' => array('Yes' => 'true', 'No' => 'false'),
'fit-zoom-window' => array('Yes' => 'true', 'No' => 'false'),
'entire-image' => array('Yes' => 'true', 'No' => 'false'),
'hint' => array('Yes' => 'true', 'No' => 'false'),
'pan-zoom' => array('Yes' => 'true', 'No' => 'false'),
'hint-position' => array(
'top left' => 'tl' ,
'top right' => 'tr' ,
'top center' => 'tc' ,
'bottom left' => 'bl' ,
'bottom right' => 'br' ,
'bottom center' => 'bc'
),
'right-click' => array(
'Yes' => 'true',
'Original' => 'original',
'Expanded' => 'expanded',
'No' => 'false'
),
'restore-speed' => create_function('&$params', 'return $params->checkValue("restore-speed","-1")?$params->getValue("expand-speed"):$params->getValue("restore-speed");')
));
}
/**
* Metod to get headers string
*
* @param string $jsPath Path to JS file
* @param string $cssPath Path to CSS file
*
* @return string
*/
function getHeadersTemplate($jsPath = '', $cssPath = null) {
//to prevent multiple displaying of headers
if(!defined('MagicZoomPlusModuleHeaders')) {
define('MagicZoomPlusModuleHeaders', true);
} else {
return '';
}
if($cssPath == null) $cssPath = $jsPath;
$headers = array();
$headers[] = '<!-- Magic Zoom Plus Joomla module module version v3.0.3 [v1.4.9:v4.5.31] -->';
$headers[] = '<link type="text/css" href="' . $cssPath . '/magiczoomplus.css" rel="stylesheet" media="screen" />';
$headers[] = '<script type="text/javascript" src="' . $jsPath . '/magiczoomplus.js"></script>';
$headers[] = '<script type="text/javascript" src="' . $jsPath . '/magictoolbox.utils.js"></script>';
$headers[] = $this->getOptionsTemplate();
return "\r\n" . implode("\r\n", $headers) . "\r\n";
}
/**
* Metod to get options string
*
* @return string
*/
function getOptionsTemplate() {
$addition = '';
$captionSource = $this->params->getParam('caption-source');
if($captionSource && isset($captionSource['core']) && $captionSource['core']) {
$addition .= "\n\t\t'caption-source':'" . $this->params->getValue('caption-source') . "',";
} else {
$addition .= "\n\t\t'caption-source':'span',";
}
return "<script type=\"text/javascript\">\n\tMagicZoomPlus.options = {{$addition}\n\t\t".$this->params->serialize(true, ",\n\t\t")."\n\t}\n</script>";
}
/**
* Metod to get main image HTML
*
* @param array $params Params
*
* @return string
*/
function getMainTemplate($params) {
$img = '';
$thumb = '';
$id = '';
$alt = '';
$title = '';
$description = '';
$width = '';
$height = '';
$link = '';
$group = '';
extract($params);
if(empty($img)) return false;
if(empty($thumb)) $thumb = $img;
if(empty($id)) $id = md5($img);
if($this->params->checkValue('show-caption', 'Yes')) {
$captionSource = $this->params->getValue('caption-source');
$captionSource = strtolower(trim($captionSource));
if($captionSource == 'all' || $captionSource == 'both') {
$captionSource = $this->params->getValues('caption-source');
} else {
$captionSource = explode(',',$captionSource);
}
$fullTitle = array();
foreach($captionSource as $caption) {
$caption = trim($caption);
$caption = lcfirst(implode(explode(' ', ucwords($caption))));
if($caption == 'all' || $caption == 'both' || !isset($$caption) || empty($$caption)) continue;
if($caption == 'title') {
$fullTitle[] = '<b>' . $$caption . '</b>';
} else {
$fullTitle[] = $$caption;
}
}
$description = implode('<br/>',$fullTitle);
$description = trim(preg_replace('/\s+/is', ' ', $description));
if(!empty($description)) {
$description = preg_replace('/<(\/?)a([^>]*)>/is', '[$1a$2]', $description);
$description = '<span>'.$description.'</span>';
}
} else $description = '';
if(!empty($title)) {
$title = htmlspecialchars(htmlspecialchars_decode($title, ENT_QUOTES));
if(empty($alt)) {
$alt = $title;
} else {
$alt = htmlspecialchars(htmlspecialchars_decode($alt, ENT_QUOTES));
}
$title = " title=\"{$title}\"";
} else {
$title = '';
if(empty($alt)) {
$alt = '';
} else {
$alt = htmlspecialchars(htmlspecialchars_decode($alt, ENT_QUOTES));
}
}
if($this->params->checkValue('show-title', 'disable')) {
$title = '';
}
if(empty($width)) $width = ''; else $width = " width=\"{$width}\"";
if(empty($height)) $height = ''; else $height = " height=\"{$height}\"";
if($this->params->checkValue('show-message', 'Yes')) {
$message = '<div class="MagicToolboxMessage">' . $this->params->getValue('message') . '</div>';
} else $message = '';
$rel = $this->params->serialize();
$tap = '';
if(empty($link)) {
$link = '';
} else if($this->params->checkValue('disable-expand', 'Yes')) {
//onclick only if MagicThumb disabled
$link = ' onclick="document.location.href=\'' . ($link) . '\'"';
$tap = "<script>\$mjs('MagicZoomPlusImage{$id}').je1('touchstart', onMagicTap); \$mjs('MagicZoomPlusImage{$id}').je1('touchend', onMagicTap);</script>";
} else {
$rel .= 'link:' . ($link) . ';';
$link = '';
}
if(!empty($group)) {
$rel .= 'group:' . ($group) . ';';
}
if(isset($advanced_option)) {
$rel .= $advanced_option . ';';
}
if(isset($hotspots) && $hotspots) {
$rel .= 'hotspots:' . $hotspots;
}
if(!empty($rel)) $rel = 'rel="'.$rel.'"';
return "<a{$link} class=\"MagicZoomPlus\"{$title} id=\"MagicZoomPlusImage{$id}\" href=\"{$img}\" {$rel}><img itemprop=\"image\"{$width}{$height} src=\"{$thumb}\" alt=\"{$alt}\" />{$description}</a>{$message}{$tap}";
}
/**
* Metod to get selectors HTML
*
* @param array $params Params
*
* @return string
*/
function getSelectorTemplate($params) {
$img = '';
$medium = '';
$thumb = '';
$id = '';
$alt = '';
$title = '';
$width = '';
$height = '';
extract($params);
if(empty($img)) return false;
if(empty($medium)) $medium = $img;
if(empty($thumb)) $thumb = $img;
if(empty($id)) $id = md5($img);
if(!empty($title)) {
$title = htmlspecialchars(htmlspecialchars_decode($title, ENT_QUOTES));
if(empty($alt)) {
$alt = $title;
} else {
$alt = htmlspecialchars(htmlspecialchars_decode($alt, ENT_QUOTES));
}
$title = " title=\"{$title}\"";
} else {
$title = '';
if(empty($alt)) {
$alt = '';
} else {
$alt = htmlspecialchars(htmlspecialchars_decode($alt, ENT_QUOTES));
}
}
if($this->params->checkValue('show-caption', 'No')) {
$title = '';
}
if(empty($width)) $width = ''; else $width = " width=\"{$width}\"";
if(empty($height)) $height = ''; else $height = " height=\"{$height}\"";
$rel = $this->params->serialize();
if(isset($advanced_option)) {
$rel .= $advanced_option . ';';
}
if(isset($hotspots) && $hotspots) {
$rel .= 'hotspots:' . $hotspots;
}
return "<a{$title} href=\"{$img}\" rel=\"zoom-id:MagicZoomPlusImage{$id};caption-source:a:title;{$rel}\" rev=\"{$medium}\"><img{$width}{$height} src=\"{$thumb}\" alt=\"{$alt}\" /></a>";
}
function getAddonsTemplate($imgPath = '') {
if($this->params->checkValue('loading-animation', 'Yes')){
return '<img style="display:none;" class="MagicZoomLoading" src="' . $imgPath . '/' . $this->params->getValue("loading-image") . '" alt="' . $this->params->getValue("loading-text") . '"/>';
} else {
return '';
}
}
/**
* Metod to load defaults options
*
* @return void
*/
function loadDefaults() {
$params = array("enable-effect"=>array("id"=>"enable-effect","group"=>"General","order"=>"10","default"=>"Zoom & Expand","label"=>"Enable effect","type"=>"array","subType"=>"select","values"=>array("Zoom & Expand","Zoom","Expand","Swap images only","No"),"scope"=>"profile"),"thumb-max-width"=>array("id"=>"thumb-max-width","group"=>"Positioning and Geometry","order"=>"10","default"=>"250","label"=>"Maximum width of thumbnail (in pixels)","type"=>"num","scope"=>"profile"),"thumb-max-height"=>array("id"=>"thumb-max-height","group"=>"Positioning and Geometry","order"=>"11","default"=>"250","label"=>"Maximum height of thumbnail (in pixels)","type"=>"num","scope"=>"profile"),"zoom-width"=>array("id"=>"zoom-width","group"=>"Positioning and Geometry","order"=>"140","default"=>"300","label"=>"Zoomed area width (in pixels or percent)","type"=>"text","scope"=>"tool"),"zoom-height"=>array("id"=>"zoom-height","group"=>"Positioning and Geometry","order"=>"150","default"=>"300","label"=>"Zoomed area height (in pixels or percent)","type"=>"text","scope"=>"tool"),"zoom-position"=>array("id"=>"zoom-position","group"=>"Positioning and Geometry","order"=>"160","default"=>"right","label"=>"Zoomed area position","type"=>"array","subType"=>"select","values"=>array("top","right","bottom","left","inner"),"scope"=>"tool"),"zoom-align"=>array("id"=>"zoom-align","group"=>"Positioning and Geometry","order"=>"161","default"=>"top","label"=>"How to align zoom window to an image","type"=>"array","subType"=>"select","values"=>array("right","left","top","bottom","center"),"scope"=>"tool"),"zoom-distance"=>array("id"=>"zoom-distance","group"=>"Positioning and Geometry","order"=>"170","default"=>"15","label"=>"Distance between small image and zoom window (in pixels)","type"=>"num","scope"=>"tool"),"expand-size"=>array("id"=>"expand-size","group"=>"Positioning and Geometry","order"=>"210","default"=>"fit-screen","label"=>"Size of the expanded image","type"=>"text","description"=>"The value can be 'fit-screen', 'original' or width/height. E.g. 'width=400' or 'height=350'","scope"=>"tool"),"expand-position"=>array("id"=>"expand-position","group"=>"Positioning and Geometry","order"=>"220","default"=>"center","label"=>"Precise position of enlarged image (px)","type"=>"text","description"=>"The value can be 'center' or coordinates. E.g. 'top=0, left=0' or 'bottom=100, left=100'","scope"=>"tool"),"expand-align"=>array("id"=>"expand-align","group"=>"Positioning and Geometry","order"=>"230","default"=>"screen","label"=>"Align expanded image relative to screen or thumbnail","type"=>"array","subType"=>"select","values"=>array("screen","image"),"scope"=>"tool"),"square-images"=>array("id"=>"square-images","group"=>"Positioning and Geometry","order"=>"310","default"=>"disable","label"=>"Create square images","description"=>"The white/transparent padding will be added around the image or the image will be cropped.","type"=>"array","subType"=>"radio","values"=>array("extend","crop","disable"),"scope"=>"profile"),"expand-effect"=>array("id"=>"expand-effect","group"=>"Effects","order"=>"10","default"=>"back","label"=>"Effect while expanding image","type"=>"array","subType"=>"select","values"=>array("linear","cubic","back","elastic","bounce"),"scope"=>"tool"),"restore-effect"=>array("id"=>"restore-effect","group"=>"Effects","order"=>"20","default"=>"linear","label"=>"Effect while restoring image","type"=>"array","subType"=>"select","values"=>array("linear","cubic","back","elastic","bounce"),"scope"=>"tool"),"expand-speed"=>array("id"=>"expand-speed","group"=>"Effects","order"=>"30","default"=>"500","label"=>"Expand duration (milliseconds: 0-10000)","type"=>"num","scope"=>"tool"),"restore-speed"=>array("id"=>"restore-speed","group"=>"Effects","order"=>"40","default"=>"-1","label"=>"Restore duration (milliseconds: 0-10000, -1: use expand duration value)","type"=>"num","scope"=>"tool"),"expand-trigger"=>array("id"=>"expand-trigger","group"=>"Effects","order"=>"50","default"=>"click","label"=>"Trigger for the enlarge effect","type"=>"array","subType"=>"select","values"=>array("click","mouseover"),"scope"=>"tool"),"expand-trigger-delay"=>array("id"=>"expand-trigger-delay","group"=>"Effects","order"=>"60","default"=>"200","label"=>"Delay before mouseover triggers expand effect (milliseconds: 0 or larger)","type"=>"num","scope"=>"tool"),"restore-trigger"=>array("id"=>"restore-trigger","group"=>"Effects","order"=>"70","default"=>"auto","label"=>"Trigger to restore image to its small state","type"=>"array","subType"=>"select","values"=>array("auto","click","mouseout"),"scope"=>"tool"),"keep-thumbnail"=>array("id"=>"keep-thumbnail","group"=>"Effects","order"=>"80","default"=>"Yes","label"=>"Show/hide thumbnail when image enlarged","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"opacity"=>array("id"=>"opacity","group"=>"Effects","order"=>"270","default"=>"50","label"=>"Square opacity","type"=>"num","scope"=>"tool"),"opacity-reverse"=>array("id"=>"opacity-reverse","group"=>"Effects","order"=>"280","default"=>"No","label"=>"Add opacity to background instead of hovered area","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"zoom-fade"=>array("id"=>"zoom-fade","group"=>"Effects","order"=>"290","default"=>"Yes","label"=>"Zoom window fade effect","type"=>"array","subType"=>"select","values"=>array("Yes","No"),"scope"=>"tool"),"zoom-window-effect"=>array("id"=>"zoom-window-effect","group"=>"Effects","order"=>"291","default"=>"shadow","label"=>"Apply shadow or glow on a zoom window","type"=>"array","subType"=>"select","values"=>array("shadow","glow","false"),"scope"=>"tool"),"zoom-fade-in-speed"=>array("id"=>"zoom-fade-in-speed","group"=>"Effects","order"=>"300","default"=>"200","label"=>"Zoom window fade-in speed (in milliseconds)","type"=>"num","scope"=>"tool"),"zoom-fade-out-speed"=>array("id"=>"zoom-fade-out-speed","group"=>"Effects","order"=>"310","default"=>"200","label"=>"Zoom window fade-out speed (in milliseconds)","type"=>"num","scope"=>"tool"),"fps"=>array("id"=>"fps","group"=>"Effects","order"=>"320","default"=>"25","label"=>"Frames per second for zoom effect","type"=>"num","scope"=>"tool"),"smoothing"=>array("id"=>"smoothing","group"=>"Effects","order"=>"330","default"=>"Yes","label"=>"Enable smooth zoom movement","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"smoothing-speed"=>array("id"=>"smoothing-speed","group"=>"Effects","order"=>"340","default"=>"40","label"=>"Speed of smoothing (1-99)","type"=>"num","scope"=>"tool"),"pan-zoom"=>array("id"=>"pan-zoom","group"=>"Effects","order"=>"341","default"=>"Yes","label"=>"Zoom/pan the expanded image","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"selector-max-width"=>array("id"=>"selector-max-width","group"=>"Multiple images","order"=>"20","default"=>"70","label"=>"Maximum width of additional thumbnails (in pixels)","type"=>"num"),"selector-max-height"=>array("id"=>"selector-max-height","group"=>"Multiple images","order"=>"21","default"=>"70","label"=>"Maximum height of additional thumbnails (in pixels)","type"=>"num"),"selectors-change"=>array("id"=>"selectors-change","group"=>"Multiple images","order"=>"110","default"=>"click","label"=>"Method to switch between multiple images","type"=>"array","subType"=>"select","values"=>array("click","mouseover"),"scope"=>"tool"),"selectors-class"=>array("id"=>"selectors-class","group"=>"Multiple images","order"=>"111","default"=>"","label"=>"Define a CSS class of the active selector","type"=>"text","scope"=>"tool"),"preload-selectors-small"=>array("id"=>"preload-selectors-small","group"=>"Multiple images","order"=>"120","default"=>"Yes","label"=>"Multiple images, preload small images","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"preload-selectors-big"=>array("id"=>"preload-selectors-big","group"=>"Multiple images","order"=>"130","default"=>"No","label"=>"Multiple images, preload large images","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"selectors-effect"=>array("id"=>"selectors-effect","group"=>"Multiple images","order"=>"140","default"=>"dissolve","label"=>"Dissolve or cross fade thumbnail when switching thumbnails","type"=>"array","subType"=>"select","values"=>array("dissolve","fade","pounce","disable"),"scope"=>"tool"),"selectors-effect-speed"=>array("id"=>"selectors-effect-speed","group"=>"Multiple images","order"=>"150","default"=>"400","label"=>"Selectors effect speed, ms","type"=>"num","scope"=>"tool"),"selectors-mouseover-delay"=>array("id"=>"selectors-mouseover-delay","group"=>"Multiple images","order"=>"160","default"=>"60","label"=>"Multiple images delay in ms before switching thumbnails","type"=>"num","scope"=>"tool"),"initialize-on"=>array("id"=>"initialize-on","group"=>"Initialization","order"=>"70","default"=>"load","label"=>"How to initialize Magic Zoom and download large image","type"=>"array","subType"=>"radio","values"=>array("load","click","mouseover"),"scope"=>"tool"),"click-to-activate"=>array("id"=>"click-to-activate","group"=>"Initialization","order"=>"80","default"=>"No","label"=>"Click to show the zoom","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"click-to-deactivate"=>array("id"=>"click-to-deactivate","group"=>"Initialization","order"=>"81","default"=>"No","label"=>"Allow click to hide the zoom window","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"show-loading"=>array("id"=>"show-loading","group"=>"Initialization","order"=>"90","default"=>"Yes","label"=>"Loading message","type"=>"array","subType"=>"select","values"=>array("Yes","No"),"scope"=>"tool"),"loading-msg"=>array("id"=>"loading-msg","group"=>"Initialization","order"=>"100","default"=>"Loading zoom...","label"=>"Loading message text","type"=>"text","scope"=>"tool"),"loading-opacity"=>array("id"=>"loading-opacity","group"=>"Initialization","order"=>"110","default"=>"75","label"=>"Loading message opacity (0-100)","type"=>"num","scope"=>"tool"),"loading-position-x"=>array("id"=>"loading-position-x","group"=>"Initialization","order"=>"120","default"=>"-1","label"=>"Loading message X-axis position, -1 is center","type"=>"num","scope"=>"tool"),"loading-position-y"=>array("id"=>"loading-position-y","group"=>"Initialization","order"=>"130","default"=>"-1","label"=>"Loading message Y-axis position, -1 is center","type"=>"num","scope"=>"tool"),"entire-image"=>array("id"=>"entire-image","group"=>"Initialization","order"=>"140","default"=>"No","label"=>"Show entire large image on hover","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"show-title"=>array("id"=>"show-title","group"=>"Title and Caption","order"=>"10","default"=>"top","label"=>"Show the title of the image in the zoom window","type"=>"array","subType"=>"select","values"=>array("top","bottom","disable"),"scope"=>"tool"),"show-caption"=>array("id"=>"show-caption","group"=>"Title and Caption","order"=>"20","default"=>"Yes","label"=>"Show caption","type"=>"array","subType"=>"radio","values"=>array("Yes","No")),"caption-source"=>array("id"=>"caption-source","group"=>"Title and Caption","order"=>"30","default"=>"span","label"=>"Caption source","type"=>"array","subType"=>"select","values"=>array("span","img:alt","img:title","a:title","#id"),"core"=>"true","scope"=>"profile"),"caption-width"=>array("id"=>"caption-width","group"=>"Title and Caption","order"=>"40","default"=>"300","label"=>"Max width of bottom caption (pixels: 0 or larger)","type"=>"num","scope"=>"tool"),"caption-height"=>array("id"=>"caption-height","group"=>"Title and Caption","order"=>"50","default"=>"300","label"=>"Max height of bottom caption (pixels: 0 or larger)","type"=>"num","scope"=>"tool"),"caption-position"=>array("id"=>"caption-position","group"=>"Title and Caption","order"=>"60","default"=>"bottom","label"=>"Where to position the caption","type"=>"array","subType"=>"select","values"=>array("bottom","right","left"),"scope"=>"tool"),"caption-speed"=>array("id"=>"caption-speed","group"=>"Title and Caption","order"=>"70","default"=>"250","label"=>"Speed of the caption slide effect (milliseconds: 0 or larger)","type"=>"num","scope"=>"tool"),"show-message"=>array("id"=>"show-message","group"=>"Miscellaneous","order"=>"370","default"=>"Yes","label"=>"Show message under image?","type"=>"array","subType"=>"radio","values"=>array("Yes","No")),"message"=>array("id"=>"message","group"=>"Miscellaneous","order"=>"380","default"=>"Move your mouse over image or click to enlarge","label"=>"Message under images","type"=>"text"),"right-click"=>array("id"=>"right-click","group"=>"Miscellaneous","order"=>"385","default"=>"No","label"=>"Show right-click menu on the image","type"=>"array","subType"=>"radio","values"=>array("Yes","Original","Expanded","No"),"scope"=>"tool"),"imagemagick"=>array("id"=>"imagemagick","group"=>"Miscellaneous","order"=>"550","default"=>"auto","label"=>"Path to Imagemagick binaries (convert tool)","description"=>"You can set 'auto' to automatically detect imagemagick location or 'off' to disable imagemagick and use php GD lib instead","type"=>"text","scope"=>"profile"),"image-quality"=>array("id"=>"image-quality","group"=>"Miscellaneous","order"=>"560","default"=>"100","label"=>"Quality of thumbnails and watermarked images","type"=>"num","scope"=>"profile"),"use-original-file-names"=>array("id"=>"use-original-file-names","group"=>"Miscellaneous","order"=>"565","default"=>"Yes","label"=>"Whether to use original file name for cached images","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"profile"),"background-opacity"=>array("id"=>"background-opacity","group"=>"Background","order"=>"10","default"=>"30","label"=>"Opacity of the background effect (0-100)","type"=>"num","scope"=>"tool"),"background-color"=>array("id"=>"background-color","group"=>"Background","order"=>"20","default"=>"#000000","label"=>"Fade background color (RGB)","type"=>"text","scope"=>"tool"),"background-speed"=>array("id"=>"background-speed","group"=>"Background","order"=>"30","default"=>"200","label"=>"Speed of the fade effect (milliseconds: 0 or larger)","type"=>"num","scope"=>"tool"),"buttons"=>array("id"=>"buttons","group"=>"Buttons","order"=>"10","default"=>"show","label"=>"Whether to show navigation buttons","type"=>"array","subType"=>"select","values"=>array("show","hide","autohide"),"scope"=>"tool"),"buttons-display"=>array("id"=>"buttons-display","group"=>"Buttons","order"=>"20","default"=>"previous, next, close","label"=>"Display button","type"=>"text","description"=>"Show all three buttons or just one or two. E.g. 'previous, next' or 'close, next'","scope"=>"tool"),"buttons-position"=>array("id"=>"buttons-position","group"=>"Buttons","order"=>"30","default"=>"auto","label"=>"Location of navigation buttons","type"=>"array","subType"=>"select","values"=>array("auto","top left","top right","bottom left","bottom right"),"scope"=>"tool"),"always-show-zoom"=>array("id"=>"always-show-zoom","group"=>"Zoom mode","order"=>"10","default"=>"No","label"=>"Always show zoom?","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"drag-mode"=>array("id"=>"drag-mode","group"=>"Zoom mode","order"=>"20","default"=>"No","label"=>"Use drag mode?","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"move-on-click"=>array("id"=>"move-on-click","group"=>"Zoom mode","order"=>"30","default"=>"Yes","label"=>"Click alone will also move zoom (drag mode only)","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"x"=>array("id"=>"x","group"=>"Zoom mode","order"=>"40","default"=>"-1","label"=>"Initial zoom X-axis position for drag mode, -1 is center","type"=>"num","scope"=>"tool"),"y"=>array("id"=>"y","group"=>"Zoom mode","order"=>"50","default"=>"-1","label"=>"Initial zoom Y-axis position for drag mode, -1 is center","type"=>"num","scope"=>"tool"),"preserve-position"=>array("id"=>"preserve-position","group"=>"Zoom mode","order"=>"60","default"=>"No","label"=>"Position of zoom can be remembered for multiple images and drag mode","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"fit-zoom-window"=>array("id"=>"fit-zoom-window","group"=>"Zoom mode","order"=>"70","default"=>"Yes","label"=>"Resize zoom window if big image is smaller than zoom window","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"slideshow-effect"=>array("id"=>"slideshow-effect","group"=>"Expand mode","order"=>"10","default"=>"dissolve","label"=>"Visual effect for switching images","type"=>"array","subType"=>"select","values"=>array("dissolve","fade","expand"),"scope"=>"tool"),"slideshow-loop"=>array("id"=>"slideshow-loop","group"=>"Expand mode","order"=>"20","default"=>"Yes","label"=>"Restart slideshow after last image","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"slideshow-speed"=>array("id"=>"slideshow-speed","group"=>"Expand mode","order"=>"30","default"=>"800","label"=>"Speed of slideshow effect (milliseconds: 0 or larger)","type"=>"num","scope"=>"tool"),"z-index"=>array("id"=>"z-index","group"=>"Expand mode","order"=>"40","default"=>"10001","label"=>"The z-index for the enlarged image","type"=>"num","scope"=>"tool"),"keyboard"=>array("id"=>"keyboard","group"=>"Expand mode","order"=>"50","default"=>"Yes","label"=>"Ability to use keyboard shortcuts","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"keyboard-ctrl"=>array("id"=>"keyboard-ctrl","group"=>"Expand mode","order"=>"60","default"=>"No","label"=>"Require Ctrl key to permit shortcuts","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"watermark"=>array("id"=>"watermark","group"=>"Watermark","order"=>"10","default"=>"","label"=>"Path to watermark image","description"=>"Relative for site base path. Use empty to disable watermark","type"=>"text","scope"=>"profile"),"watermark-max-width"=>array("id"=>"watermark-max-width","group"=>"Watermark","order"=>"20","default"=>"50%","label"=>"Maximum width of watermark image","description"=>"pixels (fixed size) or percent (relative for image size)","type"=>"text","scope"=>"profile"),"watermark-max-height"=>array("id"=>"watermark-max-height","group"=>"Watermark","order"=>"21","default"=>"50%","label"=>"Maximum height watermark image","description"=>"pixels (fixed size) or percent (relative for image size)","type"=>"text","scope"=>"profile"),"watermark-opacity"=>array("id"=>"watermark-opacity","group"=>"Watermark","order"=>"40","default"=>"50","label"=>"Opacity of the watermark image","description"=>"0-100","type"=>"num","scope"=>"profile"),"watermark-position"=>array("id"=>"watermark-position","group"=>"Watermark","order"=>"50","default"=>"center","label"=>"Position of the watermark","description"=>"'watermark-size' will ignore when 'watermark-position' sets to 'stretch'","type"=>"array","subType"=>"select","values"=>array("top","right","bottom","left","top-left","bottom-left","top-right","bottom-right","center","stretch"),"scope"=>"profile"),"watermark-offset-x"=>array("id"=>"watermark-offset-x","group"=>"Watermark","order"=>"60","default"=>"0","label"=>"Watermark horizontal offset","description"=>"Offset from left and/or right image borders. Pixels (fixed size) or percent (relative for image size)","type"=>"text","scope"=>"profile"),"watermark-offset-y"=>array("id"=>"watermark-offset-y","group"=>"Watermark","order"=>"70","default"=>"0","label"=>"Watermark vertical offset","description"=>"Offset from top and/or bottom image borders. Pixels (fixed size) or percent (relative for image size)","type"=>"text","scope"=>"profile"),"hint"=>array("id"=>"hint","group"=>"Hint","order"=>"10","default"=>"Yes","label"=>"Display a hint to suggest that image is zoomable","type"=>"array","subType"=>"radio","values"=>array("Yes","No"),"scope"=>"tool"),"hint-text"=>array("id"=>"hint-text","group"=>"Hint","order"=>"15","default"=>"Zoom","label"=>"Show text in the hint","type"=>"text","scope"=>"tool"),"hint-position"=>array("id"=>"hint-position","group"=>"Hint","order"=>"20","default"=>"top left","label"=>"Position of the hint","type"=>"array","subType"=>"select","values"=>array("top left","top right","top center","bottom left","bottom right","bottom center"),"scope"=>"tool"),"hint-opacity"=>array("id"=>"hint-opacity","group"=>"Hint","order"=>"25","default"=>"75","label"=>"Opacity of the hint (0-100)","type"=>"num","scope"=>"tool"));
$this->params->appendParams($params);
$this->params->appendParams(array(
'disable-expand' => array(
'id' => 'disable-expand',
'group' => 'Zoom mode',
'order' => 1,
'default' => 'No',
'label' => 'Disable expand effect',
'type' => 'array',
'subType' => 'radio',
'values' => array(
'Yes',
'No'
),
'scope' => 'tool'
),
'disable-zoom' => array(
'id' => 'disable-zoom',
'group' => 'Zoom mode',
'order' => 2,
'default' => 'No',
'label' => 'Disable zoom effect',
'type' => 'array',
'subType' => 'radio',
'values' => array(
'Yes',
'No'
),
'scope' => 'tool'
)
));
}
}
}
?>