"; // Is there a page owner? if ($owner = page_owner_entity()) { $icon = elgg_view("profile/icon",array('entity' => $owner, 'size' => 'tiny')); if ($owner instanceof ElggUser || $owner instanceof ElggGroup) { $info = $owner->name; } $display = "
" . $icon . "
"; $display .= "
" . $info . "
"; } echo $display; // Have we been asked to inject any content? If so, display it if (isset($vars['content'])) echo $vars['content']; // Initialise the submenu $submenu = get_submenu(); // elgg_view('canvas_header/submenu'); if (!empty($submenu)) $submenu = ""; if (!empty($submenu)) echo "
" . $submenu . "
"; // plugins can extend this to add menu options echo ""; ?>