diff options
Diffstat (limited to 'mod/cool_theme/pages/credits.php')
-rw-r--r-- | mod/cool_theme/pages/credits.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mod/cool_theme/pages/credits.php b/mod/cool_theme/pages/credits.php new file mode 100644 index 000000000..507211f0e --- /dev/null +++ b/mod/cool_theme/pages/credits.php @@ -0,0 +1,15 @@ +<?php +gatekeeper(); + +$user = elgg_get_logged_in_user_entity(); + +elgg_set_page_owner_guid($user->guid); + +$title = elgg_echo('thanks'); +elgg_set_page_owner_guid(1); +$content = elgg_view_layout('two_sidebar', array( + 'title' => $title, + 'content' => elgg_echo('thanks_body'), +)); + +echo elgg_view_page($title, $content);
\ No newline at end of file |