summaryrefslogtreecommitdiff
path: root/core/helpers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-12-20 01:16:46 +0000
committerBharat Mediratta <bharat@menalto.com>2008-12-20 01:16:46 +0000
commit16a3e43b45c654e0e882810234a39ea518a70879 (patch)
treed5288c0c73da3ec7d0e6d59408b245157379ae88 /core/helpers
parente12a4f2ae392a91db0c649367977d46cedc87e68 (diff)
Move the "Photo Stream" section into its own block
Diffstat (limited to 'core/helpers')
-rw-r--r--core/helpers/core_block.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/helpers/core_block.php b/core/helpers/core_block.php
index b5f7ccf4..41fb2790 100644
--- a/core/helpers/core_block.php
+++ b/core/helpers/core_block.php
@@ -43,6 +43,12 @@ class core_block_Core {
$block->content = new View("admin_block_messages.html");
$blocks[] = $block;
+ $block = new Block();
+ $block->id = "gPhotoStream";
+ $block->title = _("Photo Stream");
+ $block->content = new View("admin_block_photo_stream.html");
+ $blocks[] = $block;
+
return implode("\n", $blocks);
}