| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/HostingSpaces/admin/chatme24.com/wwwroot/administration/ |
Upload File : |
<?php
/* (C) Websplosion LLC, 2001-2021
IMPORTANT: This is a commercial software product
and any kind of using it must agree to the Websplosion's license agreement.
It can be found at http://www.chameleonsocial.com/license.doc
This notice may not be removed from the source code. */
include('../_include/core/administration_start.php');
class CUsersReports extends AdminReportsContent
{
function init()
{
global $g;
$this->m_on_page = 20;
$this->m_on_bar = 10;
$this->m_sql_count = "SELECT COUNT(UR.id) FROM users_reports AS UR " . $this->m_sql_from_add;
$this->m_sql = "SELECT UR.*, UF.name AS name_from, UT.name AS name_to, UT.ban_global AS ban_to, UT.gender AS gender_to
FROM users_reports AS UR
JOIN user AS UF ON UF.user_id = UR.user_from
JOIN groups_social AS GS ON GS.group_id = UR.group_id
JOIN user AS UT ON UT.user_id = UR.user_to" . $this->m_sql_from_add;
$this->m_field['id'] = array("id", null);
$this->m_field['date'] = array("date", null);
$this->m_field['user_from'] = array("user_from", null);
$this->m_field['user_to'] = array("user_to", null);
$this->m_field['msg'] = array("msg", null);
$this->m_field['ban_to'] = array("ban_to", null);
$this->m_field['name_from'] = array("name_from", null);
$this->m_field['name_to'] = array("name_to", null);
$this->m_field['wall_id'] = array("wall_id", null);
$this->m_field['comment_id'] = array("comment_id", null);
$this->m_field['comment_type'] = array("comment_type", null);
$this->m_field['video'] = array("video", null);
$this->m_sql_where = "UR.wall_id != 0 AND UR.group_id != 0";
$this->m_sql_order = "id";
#$this->m_debug = "Y";
}
}
Common::setOptionRuntime('player_native', 'video_player_type');
Common::setOptionRuntime('Y', 'groups_social_enabled', 'template_options');
//Common::setOptionRuntime('edge', 'wall_type', 'template_options');
VideoHosts::setAutoplay(false);
VideoHosts::setMobile(false);
$g['sql']['photo_vis'] = '';
$g['sql']['photo_vis_prf'] = '';
$templateWallSectionsOnly = Common::getOptionTemplate('wall_sections_only');
if (is_array($templateWallSectionsOnly)) {
Wall::setSiteSectionsOnly($templateWallSectionsOnly);
} else {
$sections = array(
'photo',
'interests',
);
Wall::setSectionsHidden($sections);
}
$tmpls = array(
'main' => $g['tmpl']['dir_tmpl_administration'] . 'groups_social_reports_wall_post.html',
'wall_item' => $g['tmpl']['dir_tmpl_administration'] . '_wall_post.html'
);
$page = new CUsersReports('main', $tmpls);
$header = new CAdminHeader('header', $g['tmpl']['dir_tmpl_administration'] . '_header.html');
$page->add($header);
$footer = new CAdminFooter('footer', $g['tmpl']['dir_tmpl_administration'] . '_footer.html');
$page->add($footer);
$page->add(new CAdminPageMenuGroupsSocial());
include('../_include/core/administration_close.php');