<?php
/*-------------------------------------------------------+
| PHPFusion Content Management System
| Copyright (C) PHP Fusion Inc
| https://phpfusion.com/
+--------------------------------------------------------+
| Filename: user_shouts-stat_include.php
| Author: Core Development Team
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
defined('IN_FUSION') || exit;
if ($profile_method == "input") {
$user_fields = '';
if (defined('ADMIN_PANEL')) { // To show in admin panel only.
$user_fields .= "<div class='row'>\n<div class='col-xs-12 col-sm-3 strong'>".$locale['uf_shouts-stat']."</div>\n<div class='col-xs-12 col-sm-9'>\n";
if (defined('SHOUTBOX_PANEL_EXISTS')) {
$user_fields .= "--";
} else {
$user_fields .= "<div class='alert alert-warning'><strong><i class='fa fa-exclamation-triangle m-r-10'></i>".$locale['uf_shouts-stat_na']."</strong></div>";
}
$user_fields .= "</div>\n</div>\n";
}
} else if ($profile_method == "display") {
if (defined('SHOUTBOX_PANEL_EXISTS')) {
$user_fields = [
'title' => $locale['uf_shouts-stat'],
'value' => number_format(dbcount("(shout_id)", DB_SHOUTBOX, "shout_name='".intval($_GET['lookup'])."'"))
];
}
}