Просмотр файла globalchat/cms/chatmix/head.php

Размер файла: 2.54Kb
<?php
if (isset ($preventing_output))
define ('NO_OUTPUT', 1);

if (empty ($gc_title))
$title = 'ChatMix';
else
$title = $gc_title;
require $_SERVER['DOCUMENT_ROOT'].'/sys/incs/start.php';

/* Если форма ввода сообщений стоит в не удобном положении,
* то вы можете отрегулировать ее вертикальное положение изменив этот параметр */
define ('GC_C_FORM_POSITION_CORRECTION', -8);

/*
* DIV - div для всех версий
* DIV_C - div классы веб версии
* DIV_M - div классы мобильной версии
*/

define ('DIV_MODULE_TOPICS', 'room_data');
define ('DIV_MODULE_QUIZ', 'room_data');
define ('DIV_MODULE_DECRYPTOR', 'room_data');

define ('DIV_SMILES_LIST', 'clean_block');
define ('DIV_BBCODES_LIST', 'clean_block');

define ('DIV_C_USER_NICK', 'user_nick');
define ('DIV_C_USER_ID', 'user_id');
define ('DIV_C_CHAT_AREA', '');
define ('DIV_C_MSG_FORM', 'msg_form');
define ('DIV_C_MSGS_LIST', 'post'); 
define ('DIV_C_QUICK_MSG', 'quick_msg');
define ('DIV_C_QUICK_MSG_FORM', 'form');
define ('DIV_C_INFO_PANEL', 'minor_block');
define ('DIV_C_ROOMS_LIST', 'minor_block');
define ('DIV_C_USERS_IN_THE_ROOM', 'minor_block');

define ('DIV_C_MSG', 'msg');
define ('DIV_C_ERROR', 'err');

define ('DIV_M_USERS_LIST', 'post');
define ('DIV_M_USERS_IN_THE_ROOM', 'users_list_line');
define ('DIV_M_USERS_ONLINE', 'post');

define ('DIV_M_USER_ID', 'user_id');
define ('DIV_M_USER_INFO_PANEL', 'post');
define ('DIV_M_USER_MENU', 'post');
define ('DIV_M_USER_MENU_TITLE', 'post');
define ('DIV_M_USER_PROFILE', 'post');
define ('DIV_M_USER_PROFILE_TITLE', 'post');
define ('DIV_M_WRITE_TO_USER', 'post');

define ('DIV_M_NAVIGATION_FOOT', 'foot_navigation');

define ('DIV_M_QUICK_MSG_FORM', 'post');
define ('DIV_M_QUICK_MSG', 'post');

define ('DIV_M_ROOMS_LIST', 'post');
define ('DIV_M_AUTOUPDATE_FORM', 'form');
define ('DIV_M_MSG_FORM', 'form');
define ('DIV_M_MSGS_LIST', 'post');
define ('DIV_M_PAGINATION', 'pagination');

define ('DIV_M_MSG', 'msg');
define ('DIV_M_ERROR', 'error');
/* Конец свободного кода */







if (!empty ($user))
{
define ('GC_USER', true);
define ('GC_USER_ID', $user['id']);
define ('GC_USER_NICK', $user['nick']);
define ('GC_USER_SEX', $user['sex']);
	if ($user['rights_group'] >= 3)
	define ('GC_USER_ADMIN', 1);
}
else
{
define ('GC_USER_ID', null);
define ('GC_USER_NICK', null);
define ('GC_USER_SEX', null);
}