getContainerEntity(); if (!$container) { register_error(elgg_echo('noaccess')); $_SESSION['last_forward_from'] = current_page_url(); forward(''); } elgg_set_page_owner_guid($album->getContainerGUID()); $owner = elgg_get_page_owner_entity(); $title = elgg_echo($album->getTitle()); // set up breadcrumbs elgg_push_breadcrumb(elgg_echo('photos'), 'photos/siteimagesall'); elgg_push_breadcrumb(elgg_echo('tidypics:albums'), 'photos/all'); if (elgg_instanceof($owner, 'group')) { elgg_push_breadcrumb($owner->name, "photos/group/$owner->guid/all"); } else { elgg_push_breadcrumb($owner->name, "photos/owner/$owner->username"); } elgg_push_breadcrumb($album->getTitle()); $content = elgg_view_entity($album, array('full_view' => true)); if (elgg_is_logged_in()) { if (elgg_instanceof($owner, 'group')) { $logged_in_guid = $owner->guid; } else { $logged_in_guid = elgg_get_logged_in_user_guid(); } elgg_register_menu_item('title', array('name' => 'addphotos', 'href' => "ajax/view/photos/selectalbum/?owner_guid=" . $logged_in_guid, 'text' => elgg_echo("photos:addphotos"), 'link_class' => 'elgg-button elgg-button-action elgg-lightbox')); } if ($album->getContainerEntity()->canWriteToContainer()) { elgg_register_menu_item('title', array( 'name' => 'upload', 'href' => 'photos/upload/' . $album->getGUID(), 'text' => elgg_echo('images:upload'), 'link_class' => 'elgg-button elgg-button-action', )); } // only show sort button if there are images if ($album->canEdit() && $album->getSize() > 0) { elgg_register_menu_item('title', array( 'name' => 'sort', 'href' => "photos/sort/" . $album->getGUID(), 'text' => elgg_echo('album:sort'), 'link_class' => 'elgg-button elgg-button-action', 'priority' => 200, )); } // only show slideshow link if slideshow is enabled in plugin settings and there are images if (elgg_get_plugin_setting('slideshow', 'tidypics') && $album->getSize() > 0) { $offset = (int)get_input('offset', 0); $url = $album->getURL() . "?limit=64&offset=$offset&view=rss"; $url = elgg_format_url($url); $slideshow_link = "javascript:PicLensLite.start({maxScale:0, feedUrl:'$url'})"; elgg_register_menu_item('title', array('name' => 'slideshow', 'href' => $slideshow_link, 'text' => "\"".elgg_echo('album:slideshow')."\"", 'title' => elgg_echo('album:slideshow'), 'link_class' => 'elgg-button elgg-button-action', 'priority' => 300)); } $body = elgg_view_layout('content', array( 'filter' => false, 'content' => $content, 'title' => $album->getTitle(), 'sidebar' => elgg_view('photos/sidebar', array('page' => 'album')), )); echo elgg_view_page($title, $body);