";
$x .= print_r($s, 1);
$x .= "";
if ($return) return $x;
else print $x;
}
/**
* Prints the Metadata data of the current image
*
* @param string $title title tag for the class
* @param bool $toggle set to true to get a javascript toggle on the display of the data
* @param string $id style class id
* @param string $class style class
* @author Ozh
*/
function printImageMetadataMod($title = NULL, $toggle = true, $id = 'imagemetadata', $class = null, $span = NULL) {
global $_zp_exifvars, $_zp_current_image;
if (false === ($exif = getImageMetaData($_zp_current_image, true))) {
return;
}
if (is_null($title)) {
$title = gettext('Image Info');
}
if ($class) {
$class = ' class="' . $class . '"';
}
if (!$span) {
$span = 'exif_link';
}
$dataid = $id . '_data';
if ($id) {
$id = ' id="' . $id . '"';
}
$refh = $refa = $style = '';
if ($toggle == 'colorbox' && zp_has_filter('theme_head', 'colorbox::css')) {
$refh = '';
$refa = '';
$style = ' style="display:none"';
} else if ($toggle) {
$refh = '';
$refa = '';
$style = ' style="display:none"';
}
?>
>
>
$value) {
$label = $_zp_exifvars[$field][2];
echo "| $label: | ";
switch ($_zp_exifvars[$field][6]) {
case 'time':
//echo zpFormattedDate(DATE_FORMAT, strtotime($value));
echo date('d.m.Y à H:i',strtotime($value));
break;
default:
echo html_encode($value);
break;
}
echo " |
\n";
}
?>
exists) {
//$randomImageURL = html_encode(getURL($randomImage));
$randomImageURL = $randomImage->getLink(); // ZP 1.4.6
echo '';
if($crop) {
$html = "
getCustomImage(NULL, $width, $height, $width, $height, NULL, NULL, TRUE))."\" alt=\"" . html_encode($randomImage->getTitle()) . "\" />\n";
} else {
$html = "
getCustomImage($width, NULL, NULL, NULL, NULL, NULL, NULL, TRUE))."\" alt=\"" . html_encode($randomImage->getTitle()) . "\" />\n";
}
echo zp_apply_filter('custom_image_html', $html, false);
echo "";
}
}
}
function printHDRandomImagesCustom($number=5, $class=null, $option='all', $rootAlbum='',$width=100,$height=100,$crop=true) {
if (!is_null($class)) {
$class = ' class="' . $class . '"';
}
for ($i=1; $i<=$number; $i++) {
switch($option) {
case "all":
$randomImage = getRandomImages();
break;
case "album":
$randomImage = getRandomImagesAlbum($rootAlbum);
break;
}
//print_r($randomImage);
if (is_object($randomImage) && $randomImage->exists) {
//$randomImageURL = html_encode(getURL($randomImage));
$randomImageURL = $randomImage->getLink(); // ZP 1.4.6
echo '';
if($crop) {
$html = "
getCustomImage(NULL, $width, $height, $width, $height, NULL, NULL, TRUE))."\" alt=\"" . html_encode($randomImage->getTitle()) . "\" />\n";
} else {
$html = "
getCustomImage($width, NULL, NULL, NULL, NULL, NULL, NULL, TRUE))."\" alt=\"" . html_encode($randomImage->getTitle()) . "\" />\n";
}
echo zp_apply_filter('custom_image_html', $html, false);
echo "";
}
}
}
function printLatestImagesCustom($number=8, $class=null, $option='latest', $width=320,$height=240,$crop=true) {
if (!is_null($class)) {
$class = ' class="' . $class . '"';
}
$images = getImageStatistic($number, $option);
foreach ($images as $image) {
//$latestImageURL = html_encode(getURL($image));
$latestImageURL = $image->getLink(); // ZP 1.4.6
//echo $latestImageURL;
echo '';
echo '
';
echo '';
}
}
function printHDLatestImagesCustom($number=8, $class=null, $option='latest', $width=320,$height=240,$crop=true) {
if (!is_null($class)) {
$class = ' class="' . $class . '"';
}
$images = getImageStatistic($number, $option);
foreach ($images as $image) {
//$latestImageURL = html_encode(getURL($image));
$latestImageURL = $image->getLink(); // ZP 1.4.6
//echo $latestImageURL;
echo '';
echo '
';
echo '';
}
}
/**
* Output the google map
*
* @param string $text text for the "toggle" link that shows/hides the map. Set empty to omit (then Map is always displayed)
* @param string $id used to set the IDs for the toggle href element ($id_toggle) and the map element ($id_data)
* @param string $hide initial map state: "hide", "show", or "colorbox"
* @param object $obj optional image/album object. Pass string for generic map and use callback to set points
* @param function $callback optional callback function to set map options.
*/
function _printGoogleMap($text = NULL, $id = NULL, $hide = NULL, $obj = NULL, $callback = NULL) {
global $_zp_current_album, $_zp_current_image, $_x, $_y, $_z, $_n;
/* controls of parameters */
if (is_null($obj)) {
if (is_null($_zp_current_image)) {
$obj = $_zp_current_album;
} else {
$obj = $_zp_current_image;
}
}
if (is_null($obj)) {
return false;
}
if (is_object($obj)) {
$type = $obj->table;
$typeid = $obj->getID();
} else {
$type = $obj;
$typeid = '';
}
if (is_null($text)) {
$text = gettext('Google Map');
}
if (empty($text)) {
$hide = 'show';
}
if (is_null($hide)) {
$hide = getOption('gmap_display');
}
if (!is_string($hide)) {
if ($hide) {
$hide = 'hide';
} else {
$hide = 'show';
}
}
/* map configuration */
$mapControls = getOption('gmap_control_type');
if ($mapControls == 'none') {
$mapTypeControl = false;
} else {
$mapTypeControl = true;
$map_control_type = $mapControls;
$allowedMapTypes = array();
if (getOption('gmap_map_hybrid'))
$allowedMapTypes[] = 'HYBRID';
if (getOption('gmap_map_roadmap'))
$allowedMapTypes[] = 'ROADMAP';
if (getOption('gmap_map_satellite'))
$allowedMapTypes[] = 'SATELLITE';
if (getOption('gmap_map_terrain'))
$allowedMapTypes[] = 'TERRAIN';
}
$config['center'] = '0, 0';
$config['zoom'] = '13';
$config['cluster'] = true;
$config['zoomControlStyle'] = getOption('gmap_zoom_size');
if ($mapTypeControl) {
$config['map_type'] = getOption('gmap_starting_map');
$config['map_types_available'] = $allowedMapTypes;
} else {
$config['disableMapTypeControl'] = true;
}
$config['map_width'] = getOption('gmap_width') . "px";
$config['map_height'] = getOption('gmap_height') . "px";
$config['clusterMaxZoom'] = getOption('gmap_cluster_max_zoom');
$config['clusterAverageCenter'] = true;
$config['onclick'] = "iw.close();";
$config['minifyJS'] = !TEST_RELEASE;
$map = new Googlemaps($config);
/* add markers from geocoded pictures */
switch ($type) {
case 'images':
if (getImageGeodata($obj, $map)) {
break;
} else {
$map = NULL;
return false;
}
case 'albums':
if (getAlbumGeodata($obj, $map)) {
break;
} else {
$map = NULL;
return false;
}
default:
break;
}
if ($_n == 1)
$map->zoom = 13;
if ($_n) {
$_x = $_x / $_n;
$_y = $_y / $_n;
$_z = $_z / $_n;
$lon = number_format(atan2($_y, $_x) * 180 / M_PI, 12, '.', '');
$hyp = sqrt($_x * $_x + $_y * $_y);
$lat = number_format(atan2($_z, $hyp) * 180 / M_PI, 12, '.', '');
$map->center = $lat . ', ' . $lon;
}
if (!is_null($callback)) {
call_user_func($callback, $map);
}
/* map display */
if (is_null($id)) {
$id = $type . $typeid . '_googlemap';
}
$id_toggle = $id . '_toggle';
$id_data = $id . '_data';
switch ($hide) {
case 'show':
$map->create_map();
?>
output_html; ?>
create_map();
?>
output_html; ?>
create_map();
$map_data["output_js_contents"] = $map->output_js_contents;
$map_data["output_html"] = $map->output_html;
if (getOption('gmap_sessions')) {
$param = '';
$_SESSION['GoogleMapVars'] = $map_data;
} else {
$serializedData = serialize($map_data);
if (function_exists('bzcompress')) {
$data = bzcompress($serializedData);
} else {
$data = gzcompress($serializedData);
}
$param = '?map_data=' . base64_encode($data);
}
?>