| 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");
require_once("../_include/current/forum.php");
class CPlaces extends CHtmlList
{
var $translateForAdmin = true;
function action()
{
global $p;
$cmd = get_param('cmd');
if($cmd == 'update') {
$category = get_param('category');
foreach ($category as $key => $item) {
DB::execute('UPDATE `forum_category` SET `sort_rank`=' . to_sql($key) . ' WHERE id=' . to_sql($item));
}
redirect($p . '?action=saved');
} elseif ($cmd == 'delete') {
$items = get_param('item');
if ($items != '') {
$items = explode(',', $items);
foreach ($items as $id) {
CForumCategory::delete_by_id($id);
}
}
redirect($p . '?action=delete');
}
}
function init()
{
global $g;
$this->m_on_page = 1000;
$this->m_sql_count = "SELECT COUNT(m.id) FROM forum_category AS m " . $this->m_sql_from_add . "";
$this->m_sql = "
SELECT m.*
FROM forum_category AS m
" . $this->m_sql_from_add . "
";
$this->m_field['id'] = array("id", null);
$this->m_field['title'] = array("title", null);
$where = "";
#$this->m_debug = "Y";
$this->m_sql_where = "1" . $where;
$this->m_sql_order = "sort_rank, id";
$this->m_sql_from_add = "";
}
function parseBlock(&$html)
{
parent::parseBlock($html);
}
function onItem(&$html, $row, $i, $last)
{
global $g;
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", '');
}
parent::onItem($html, $row, $i, $last);
}
}
$page = new CPlaces("main", $g['tmpl']['dir_tmpl_administration'] . "forum_categories.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 CAdminPageMenuForums());
include("../_include/core/administration_close.php");