* @package ElggReportedContent
*/
-elgg_register_event_handler('init','system','reportedcontent_init');
+elgg_register_event_handler('init', 'system', 'reportedcontent_init');
/**
* Initialize the plugin
$content .= elgg_view_title(elgg_echo('reportedcontent:this'));
$content .= elgg_view('reportedcontent/form');
- $sidebar .= elgg_echo('reportedcontent:instructions');
+ $sidebar = elgg_echo('reportedcontent:instructions');
$params = array(
'content' => $content,
- 'sidebar' => $sidebar
+ 'sidebar' => $sidebar,
);
$body = elgg_view_layout('one_sidebar', $params);
*/
$guid = 0;
-$title = get_input('title',"");
+$title = get_input('title', "");
$description = "";
-$address = get_input('address',"");
+$address = get_input('address', "");
if ($address == "previous") {
$address = $_SERVER['HTTP_REFERER'];
}
$owner = get_loggedin_user();
?>
-<form action="<?php echo elgg_get_site_url(); ?>action/reportedcontent/add" method="post" class="margin-top">
+<form action="<?php echo elgg_get_site_url(); ?>action/reportedcontent/add" method="post" class="mtm">
<?php echo elgg_view('input/securitytoken'); ?>
<p>
?>
</label>
</p>
- <p class="longtext_inputarea">
+ <p>
<label>
<?php echo elgg_echo('reportedcontent:description'); ?>
</label>
+++ /dev/null
-<li class="user_menu_profile">
-<?php
- echo "<a class='report_this' href=\"javascript:location.href='". elgg_get_site_url() . "pg/reportedcontent/add/?address='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)\">" . elgg_echo('reportedcontent:report') . "</a>";
-?>
-</li>
\ No newline at end of file
--- /dev/null
+<?php
+/**
+ * List the latest reports
+ */
+
+$list = elgg_list_entities(array(
+ 'types' => 'object',
+ 'subtypes' => 'reported_content',
+ 'limit' => $vars['entity']->num_display,
+));
+if (!$list) {
+ $list = '<p class="mtm">' . elgg_echo('reportedcontent:none') . '</p>';
+}
+
+echo $list;
\ No newline at end of file
--- /dev/null
+<?php
+/**
+ * Widget edit view
+ */
+
+// set default value
+if (!isset($vars['entity']->num_display)) {
+ $vars['entity']->num_display = 4;
+}
+
+$params = array(
+ 'internalname' => 'params[num_display]',
+ 'value' => $vars['entity']->num_display,
+ 'options' => array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
+);
+$dropdown = elgg_view('input/pulldown', $params);
+
+?>
+<p>
+ <?php echo elgg_echo('reportedcontent:numbertodisplay'); ?>:
+ <?php echo $dropdown; ?>
+</p>
+