From 1f601b88cb4a7ab4cfcbca1dc82df4acf7d9caa5 Mon Sep 17 00:00:00 2001 From: ewinslow Date: Fri, 25 Feb 2011 23:45:22 +0000 Subject: Refs #2895: Removed footer/links view. Moved report-this link into alternate footer menu git-svn-id: http://code.elgg.org/elgg/trunk@8481 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/reportedcontent/start.php | 13 ++++++++++++- .../views/default/reportedcontent/css.php | 3 --- .../views/default/reportedcontent/footer_link.php | 20 -------------------- 3 files changed, 12 insertions(+), 24 deletions(-) delete mode 100644 mod/reportedcontent/views/default/reportedcontent/footer_link.php (limited to 'mod/reportedcontent') diff --git a/mod/reportedcontent/start.php b/mod/reportedcontent/start.php index 2ef80a7e3..e4b2f5852 100644 --- a/mod/reportedcontent/start.php +++ b/mod/reportedcontent/start.php @@ -21,7 +21,18 @@ function reportedcontent_init() { // Extend footer with report content link if (elgg_is_logged_in()) { - elgg_extend_view('footer/links', 'reportedcontent/footer_link'); + $href = "javascript:elgg.forward('pg/reportedcontent/add'"; + $href .= "+'?address='+encodeURIComponent(location.href)"; + $href .= "+'&title='+encodeURIComponent(document.title));"; + + elgg_register_menu_item('footer', array( + 'name' => 'report_this', + 'href' => $href, + 'title' => elgg_echo('reportedcontent:this:tooltip'), + 'text' => '' . elgg_echo('reportedcontent:this'), + 'section' => 'alt', + 'weight' => 500, + )); } elgg_register_plugin_hook_handler('register', 'menu:user_hover', 'reportedcontent_user_hover_menu'); diff --git a/mod/reportedcontent/views/default/reportedcontent/css.php b/mod/reportedcontent/views/default/reportedcontent/css.php index ed498f03a..718777400 100644 --- a/mod/reportedcontent/views/default/reportedcontent/css.php +++ b/mod/reportedcontent/views/default/reportedcontent/css.php @@ -9,9 +9,6 @@ ?> /* Reported Content */ -.report-this { - font-size: 90%; -} .report-this-icon { background: url(mod/reportedcontent/graphics/icon_reportthis.gif) no-repeat left top; } diff --git a/mod/reportedcontent/views/default/reportedcontent/footer_link.php b/mod/reportedcontent/views/default/reportedcontent/footer_link.php deleted file mode 100644 index 58a19b343..000000000 --- a/mod/reportedcontent/views/default/reportedcontent/footer_link.php +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - -- cgit v1.2.3