<?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
*/
function reportedcontent_init() {
global $CONFIG;
-
+
// Extend CSS
elgg_extend_view('css', 'reportedcontent/css');
-
+
// Extend context menu and footer with report content link
if (isloggedin()) {
- elgg_extend_view('profile/menu/links', 'reportedcontent/user_report');
+ elgg_extend_view('profile/menu/links', 'reportedcontent/user_report');
elgg_extend_view('footer/links', 'reportedcontent/footer_link');
}
-
+
elgg_add_admin_submenu_item('reportedcontent', elgg_echo('reportedcontent'), 'overview');
-
+
//register action
register_action('reportedcontent/add', FALSE, "{$CONFIG->pluginspath}reportedcontent/actions/add.php");
register_action('reportedcontent/delete', FALSE, "{$CONFIG->pluginspath}reportedcontent/actions/delete.php");
<?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
$reported = elgg_get_entities(array('types' => 'object', 'subtypes' => 'reported_content', 'limit' => 9999));
$list = elgg_view("reportedcontent/listing", array('entity' => $reported));
-
+
// Display main admin menu
$body = <<<__HTML
$title
-$reported
$list
__HTML;