aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/start.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-04 03:39:37 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-04 03:39:37 +0000
commit41063c981d2484b90b7ea146c02e8e74f2c54119 (patch)
tree9bb4ea79b4bd845e4be49f49c924966f881433e8 /mod/reportedcontent/start.php
parente209ef52571b1e0f6a3937d3e88c9150c384994c (diff)
downloadelgg-41063c981d2484b90b7ea146c02e8e74f2c54119.tar.gz
elgg-41063c981d2484b90b7ea146c02e8e74f2c54119.tar.bz2
Merged reported content interface changes.
git-svn-id: http://code.elgg.org/elgg/trunk@5271 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/reportedcontent/start.php')
-rw-r--r--mod/reportedcontent/start.php116
1 files changed, 54 insertions, 62 deletions
diff --git a/mod/reportedcontent/start.php b/mod/reportedcontent/start.php
index d8ee7369e..e9b86230a 100644
--- a/mod/reportedcontent/start.php
+++ b/mod/reportedcontent/start.php
@@ -1,69 +1,61 @@
<?php
- /**
- * Elgg Reported content.
- *
- * @package ElggReportedContent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
- */
+/**
+ * Elgg Reported content.
+ *
+ * @package ElggReportedContent
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008-2010
+ * @link http://elgg.com/
+ */
- /**
- * Initialise the Reported content and set up the menus.
- *
- */
- function reportedcontent_init()
- {
- global $CONFIG;
-
- // Register a page handler, so we can have nice URLs
- register_page_handler('reportedcontent','reportedcontent_page_handler');
-
- // Extend CSS
- elgg_extend_view('css','reportedcontent/css');
-
- // Extend context menu and owner_block with report content link
- if (isloggedin()) {
- elgg_extend_view('profile/menu/links','reportedcontent/user_report');
- elgg_extend_view('owner_block/extend', 'reportedcontent/owner_block');
- }
- }
+/**
+ * Initialise the Reported content and set up the menus.
+ *
+ */
+function reportedcontent_init() {
+ global $CONFIG;
- /**
- * Adding the reported content to the admin menu
- *
- */
- function reportedcontent_pagesetup()
- {
- if (get_context() == 'admin' && isadminloggedin()) {
- global $CONFIG;
- add_submenu_item(elgg_echo('reportedcontent'), $CONFIG->wwwroot . 'pg/reportedcontent/');
- }
- }
+ // Register a page handler, so we can have nice URLs
+ register_page_handler('reportedcontent','reportedcontent_page_handler');
- /**
- * Reported content page handler
- *
- * @param array $page Array of page elements, forwarded by the page handling mechanism
- */
- function reportedcontent_page_handler($page)
- {
+ // Extend CSS
+ elgg_extend_view('css','reportedcontent/css');
+
+ // Extend context menu and owner_block with report content link
+ if (isloggedin()) {
+ elgg_extend_view('profile/menu/links','reportedcontent/user_report');
+ }
+}
+
+/**
+ * Adding the reported content to the admin menu
+ *
+ */
+function reportedcontent_pagesetup() {
+ if (get_context() == 'admin' && isadminloggedin()) {
global $CONFIG;
-
- // only interested in one page for now
- include($CONFIG->pluginspath . "reportedcontent/index.php");
+ add_submenu_item(elgg_echo('reportedcontent'), $CONFIG->wwwroot . 'pg/reportedcontent/');
}
+}
+
+/**
+ * Reported content page handler
+ *
+ * @param array $page Array of page elements, forwarded by the page handling mechanism
+ */
+function reportedcontent_page_handler($page) {
+ global $CONFIG;
-
-
- // Initialise Reported Content
- register_elgg_event_handler('init','system','reportedcontent_init');
- register_elgg_event_handler('pagesetup','system','reportedcontent_pagesetup');
-
- //register action
- register_action('reportedcontent/add',false,$CONFIG->pluginspath . "reportedcontent/actions/add.php");
- register_action('reportedcontent/delete',false,$CONFIG->pluginspath . "reportedcontent/actions/delete.php");
- register_action('reportedcontent/archive',false,$CONFIG->pluginspath . "reportedcontent/actions/archive.php");
-
-?> \ No newline at end of file
+ // only interested in one page for now
+ include($CONFIG->pluginspath . "reportedcontent/index.php");
+}
+
+// Initialise Reported Content
+register_elgg_event_handler('init','system','reportedcontent_init');
+register_elgg_event_handler('pagesetup','system','reportedcontent_pagesetup');
+
+//register action
+register_action('reportedcontent/add',false,$CONFIG->pluginspath . "reportedcontent/actions/add.php");
+register_action('reportedcontent/delete',false,$CONFIG->pluginspath . "reportedcontent/actions/delete.php");
+register_action('reportedcontent/archive',false,$CONFIG->pluginspath . "reportedcontent/actions/archive.php"); \ No newline at end of file