aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/views/default
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-25 23:45:22 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-25 23:45:22 +0000
commit1f601b88cb4a7ab4cfcbca1dc82df4acf7d9caa5 (patch)
tree08fc74371b14392cf1a74fc5e429522422a1484d /mod/reportedcontent/views/default
parent610c8f6ee67553a19de1342d8348b8c6f1e9b9d8 (diff)
downloadelgg-1f601b88cb4a7ab4cfcbca1dc82df4acf7d9caa5.tar.gz
elgg-1f601b88cb4a7ab4cfcbca1dc82df4acf7d9caa5.tar.bz2
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
Diffstat (limited to 'mod/reportedcontent/views/default')
-rw-r--r--mod/reportedcontent/views/default/reportedcontent/css.php3
-rw-r--r--mod/reportedcontent/views/default/reportedcontent/footer_link.php20
2 files changed, 0 insertions, 23 deletions
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>