2006-12-02 04:36:16 +00:00
|
|
|
<?php
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
|
2008-10-11 10:49:16 +00:00
|
|
|
include_lan(e_PLUGIN.'content/languages/'.e_LANGUAGE.'/lan_content_admin.php');
|
2006-12-02 04:36:16 +00:00
|
|
|
$plugintable = "pcontent";
|
|
|
|
$reported_content = $sql -> db_Count($plugintable, '(*)', "WHERE content_refer='sa' ");
|
2008-10-11 10:49:16 +00:00
|
|
|
$text .= "
|
|
|
|
<div style='padding-bottom: 2px;'>
|
|
|
|
<img src='".e_PLUGIN_ABS."content/images/content_16.png' style='width: 16px; height: 16px; vertical-align: bottom' alt='' />
|
|
|
|
";
|
|
|
|
if($reported_content)
|
|
|
|
{
|
|
|
|
$text .= " <a href='".e_PLUGIN_ABS."content/admin_content_config.php?submitted'>".CONTENT_LATEST_LAN_1." $reported_content</a>";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-12-02 04:36:16 +00:00
|
|
|
$text .= CONTENT_LATEST_LAN_1." ".$reported_content;
|
|
|
|
}
|
|
|
|
$text .= "</div>";
|
|
|
|
|
|
|
|
?>
|