diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-24 20:14:01 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-24 20:14:01 -0800 |
commit | 865995305cbd709db4f8587d73e7178a277a8d8b (patch) | |
tree | 1e607d0184f29bee7665df42df99b3a32cf2c2ff /modules/notification/views | |
parent | 26eb000637fb83c04919e1e18c67b1441db76da6 (diff) |
Add the active notifications and rest api key to user profile page.
Diffstat (limited to 'modules/notification/views')
-rw-r--r-- | modules/notification/views/user_profile_notification.html.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/notification/views/user_profile_notification.html.php b/modules/notification/views/user_profile_notification.html.php new file mode 100644 index 00000000..8864f0c7 --- /dev/null +++ b/modules/notification/views/user_profile_notification.html.php @@ -0,0 +1,12 @@ +<?php defined("SYSPATH") or die("No direct script access.") ?> +<div id="g-notification-detail"> +<ul> + <? foreach ($subscriptions as $subscription): ?> + <li id="g-watch-<?= $subscription->id ?>"> + <a href="<?= $subscription->url ?>"> + <?= html::purify($subscription->title) ?> + </a> + </li> + <? endforeach ?> +</ul> +</div> |