getGUID();
$owner = $album->getOwnerEntity();
$tags = $album->tags;
$title = $album->title;
$desc = $album->description;
$friendlytime = friendly_time($album->time_created);
$mime = $album->mimetype;
if (get_context() == "search") {
if (get_input('search_viewtype') == "gallery") {
/******************************************************************************
*
* Gallery view of an album object
*
* This is called when looking at page of albums
*
*
*****************************************************************************/
//get album cover if one was set
if ($album->cover) {
$album_cover = '
';
} else {
$album_cover = '
';
}
?>
name;?>
getURL()}\">" . sprintf(elgg_echo("comments")) . " (" . $numcomments . ")";
}
?>
' . $title . '';
$info .= "username}\">{$owner->name} {$friendlytime}";
$numcomments = elgg_count_comments($album);
if ($numcomments) {
$info .= ", getURL()}\">" . sprintf(elgg_echo("comments")) . " (" . $numcomments . ")";
}
$info .= "
";
//get album cover if one was set
if ($album->cover) {
$icon = "getURL()}\">" . '
';
} else {
$icon = "getURL()}\">" . '
';
}
echo elgg_view_listing($icon, $info);
}
} else {
/******************************************************************************
*
* Individual view of an album object
*
* This is called when getting a listing of the photos in an album
*
*
*****************************************************************************/
$page = get_input("page");
list($album_placeholder, $album_id, $album_title) = split("/", $page);
$photo_ratings = get_plugin_setting('photo_ratings', 'tidypics');
if ($photo_ratings == "enabled") {
add_submenu_item( elgg_echo("tidypics:highestrated"),
$CONFIG->wwwroot . "pg/photos/highestrated/group:" . $album_id,
'photos');
}
echo elgg_view_title($title);
?>
';
$offset = (int)get_input('offset', 0);
echo $album->viewImages(8, $offset);
// echo '' . elgg_echo('image:none') . '
';
// $num_images = 0;
//}
?>
';
} // end of individual album view