2006-12-02 04:36:16 +00:00
|
|
|
<?php
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
|
2012-12-08 01:31:00 -08:00
|
|
|
|
|
|
|
class forum_latest // include plugin-folder in the name.
|
|
|
|
{
|
|
|
|
function config()
|
|
|
|
{
|
|
|
|
$sql = e107::getDb();
|
2013-06-12 21:37:54 +02:00
|
|
|
$reported_posts = $sql->count('generic', '(*)', "WHERE gen_type='reported_post' OR gen_type='Reported Forum Post'");
|
2012-12-08 01:31:00 -08:00
|
|
|
|
|
|
|
$var[0]['icon'] = E_16_FORUM;
|
|
|
|
$var[0]['title'] = ADLAN_LAT_6;
|
2013-03-10 14:51:56 +01:00
|
|
|
$var[0]['url'] = e_PLUGIN."forum/forum_admin.php?sr";
|
2012-12-08 01:31:00 -08:00
|
|
|
$var[0]['total'] = $reported_posts;
|
|
|
|
|
|
|
|
return $var;
|
|
|
|
}
|
2006-12-02 04:36:16 +00:00
|
|
|
}
|
|
|
|
|
2012-12-08 01:31:00 -08:00
|
|
|
|
2007-02-11 20:09:19 +00:00
|
|
|
?>
|