diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-28 07:50:23 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-11-28 07:50:23 -0500 |
commit | efdd4b6544e14355f6ae0e6151c6f828271d3913 (patch) | |
tree | ddc1de199af538df367e625ab5f3cea420e039cd /pages/sortalbum.php | |
parent | ca5a35607dfb277cecba120ce27eece7c59f270a (diff) | |
download | elgg-efdd4b6544e14355f6ae0e6151c6f828271d3913.tar.gz elgg-efdd4b6544e14355f6ae0e6151c6f828271d3913.tar.bz2 |
working on album sorting
Diffstat (limited to 'pages/sortalbum.php')
-rw-r--r-- | pages/sortalbum.php | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/pages/sortalbum.php b/pages/sortalbum.php deleted file mode 100644 index 0bbd8159e..000000000 --- a/pages/sortalbum.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php -/** - * Tidypics Album Sort Page - * - * This displays a listing of all the photos so that they can be sorted - */ - -// if this page belongs to a closed group, prevent anyone outside group from seeing -if (is_callable('group_gatekeeper')) { - group_gatekeeper(); -} - -// get the album entity -$album_guid = (int) get_input('guid'); -$album = get_entity($album_guid); - -// panic if we can't get it -if (!$album) { - forward(); -} - -// container should always be set, but just in case -if ($album->container_guid) { - set_page_owner($album->container_guid); -} else { - set_page_owner($album->owner_guid); -} - -$owner = page_owner_entity(); - -$title = sprintf(elgg_echo('tidypics:sort'), $album->title); - -$content = elgg_view_title($title); -$content .= elgg_view('tidypics/sort', array('album' => $album)); - -$body = elgg_view_layout('two_column_left_sidebar', '', $content); - -page_draw($title, $body); |