diff options
-rw-r--r-- | engine/lib/elgglib.php | 1 | ||||
-rw-r--r-- | mod/reportedcontent/start.php | 13 | ||||
-rw-r--r-- | mod/reportedcontent/views/default/reportedcontent/css.php | 3 | ||||
-rw-r--r-- | mod/reportedcontent/views/default/reportedcontent/footer_link.php | 20 | ||||
-rw-r--r-- | views/default/page/elements/footer.php | 3 |
5 files changed, 14 insertions, 26 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index 01b5a24e9..3d4c46310 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -1828,6 +1828,7 @@ function elgg_init() { 'href' => 'http://elgg.org', 'text' => "<img src=\"$powered_url\" alt=\"Powered by Elgg\" />", 'section' => 'alt', + 'weight' => 1000, )); // Sets a blacklist of words in the current language. 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' => '<span class="elgg-icon report-this-icon"></span>' . 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(<?php echo elgg_get_site_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 @@ -<?php -/** - * Elgg report this link - * - * @package ElggReportContent - */ - -$title = elgg_echo('reportedcontent:this:tooltip'); -$text = elgg_echo('reportedcontent:this'); - -$url = elgg_get_site_url() . 'pg/reportedcontent/add/?address='; -$href = "javascript:location.href='$url'"; -$href .= "+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)"; -$href = elgg_format_url($href); -?> - -<a class="report-this" href="<?php echo $href; ?>" title="<?php echo $title; ?>"> - <span class="elgg-icon report-this-icon"></span> - <?php echo $text; ?> -</a> diff --git a/views/default/page/elements/footer.php b/views/default/page/elements/footer.php index 3fba27bc7..3e5f97991 100644 --- a/views/default/page/elements/footer.php +++ b/views/default/page/elements/footer.php @@ -8,5 +8,4 @@ * */ -echo elgg_view_menu('footer', array('class' => 'elgg-menu-footer')); -echo elgg_view('footer/links'); +echo elgg_view_menu('footer', array('class' => 'elgg-menu-footer', 'sort_by' => 'weight'));
\ No newline at end of file |