canEdit()) forward(); $subtype = $entity->getSubtype(); if ($subtype == 'album') { $title = elgg_echo('album:edit'); if ($container = $entity->container_guid) set_page_owner($container); } else if ($subtype == 'image') { $title = elgg_echo('image:edit'); if ($container = get_entity($entity->container_guid)->container_guid) set_page_owner($container); } else { forward(); } $area2 .= elgg_view_title($title); $area2 .= elgg_view('tidypics/forms/edit', array('entity' => $entity, 'subtype' => $subtype)); $body = elgg_view_layout('two_column_left_sidebar', $area1, $area2); page_draw($title, $body); ?>