aboutsummaryrefslogtreecommitdiff
path: root/mod/notifications/index.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-01-23 14:33:12 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-01-23 14:33:12 +0000
commit52a6050d1b4a7fae752019570bf2af521f4e2f6c (patch)
treea561c0cc433bd4c13f2cb16121a152621023bbb8 /mod/notifications/index.php
parentc8c02ae0a8a4cbb11c0d76386ab12fad73376aef (diff)
downloadelgg-52a6050d1b4a7fae752019570bf2af521f4e2f6c.tar.gz
elgg-52a6050d1b4a7fae752019570bf2af521f4e2f6c.tar.bz2
Added notification subscriptions page.
git-svn-id: https://code.elgg.org/elgg/trunk@2608 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/notifications/index.php')
-rw-r--r--mod/notifications/index.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/mod/notifications/index.php b/mod/notifications/index.php
new file mode 100644
index 000000000..670265753
--- /dev/null
+++ b/mod/notifications/index.php
@@ -0,0 +1,39 @@
+<?php
+
+ /**
+ * Elgg notifications plugin index
+ *
+ * @package ElggNotifications
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008-2009
+ * @link http://elgg.com/
+ */
+
+ // Load Elgg framework
+ require_once(dirname(dirname(dirname(__FILE__))) . '/engine/start.php');
+
+ // Ensure only logged-in users can see this page
+ gatekeeper();
+
+ // Set the context to settings
+ set_context('settings');
+
+ // Get the form
+ global $SESSION;
+ $people = array();
+ if ($people_ents = get_entities_from_relationship('notify',$SESSION['user']->guid,false,'user','',0,'',99999)) {
+ foreach($people_ents as $ent)
+ $people[] = $ent->guid;
+ }
+ $body = elgg_view('notifications/subscriptions/form',array(
+ 'people' => $people
+ ));
+
+ // Insert it into the correct canvas layout
+ $body = elgg_view_layout('two_column_left_sidebar','',$body);
+
+ // Draw the page
+ echo page_draw(elgg_echo('notifications:subscriptions:changesettings'),$body);
+
+?> \ No newline at end of file