Add the active notifications and rest api key to user profile page.

This commit is contained in:
Tim Almdal
2010-01-24 20:14:01 -08:00
parent 26eb000637
commit 865995305c
5 changed files with 58 additions and 3 deletions
@@ -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>