Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- =====================================================
- DataLife Engine - by SoftNews Media Group
- -----------------------------------------------------
- http://dle-news.ru/
- -----------------------------------------------------
- Copyright (c) 2004,2014 SoftNews Media Group
- =====================================================
- Данный код защищен авторскими правами
- =====================================================
- Файл: init.php
- -----------------------------------------------------
- Назначение: подключение дополнительных модулей
- =====================================================
- */
- if (! defined ( 'DATALIFEENGINE' )) {
- die ( "Hacking attempt!" );
- }
- @include (ENGINE_DIR . '/data/config.php');
- date_default_timezone_set ( $config['date_adjust'] );
- if ($config['http_home_url'] == "") {
- $config['http_home_url'] = explode ( "index.php", $_SERVER['PHP_SELF'] );
- $config['http_home_url'] = reset ( $config['http_home_url'] );
- $config['http_home_url'] = "http://" . $_SERVER['HTTP_HOST'] . $config['http_home_url'];
- }
- if ( !$config['version_id'] ) {
- if ( file_exists(ROOT_DIR . '/install.php') AND !file_exists(ENGINE_DIR . '/data/config.php') ) {
- header( "Location: ".str_replace("index.php","install.php",$_SERVER['PHP_SELF']) );
- die ( "Datalife Engine not installed. Please run install.php" );
- } else {
- die ( "Datalife Engine not installed. Please run install.php" );
- }
- }
- require_once ENGINE_DIR . '/classes/mysql.php';
- require_once ENGINE_DIR . '/data/dbconfig.php';
- require_once ENGINE_DIR . '/modules/functions.php';
- require_once ENGINE_DIR . '/modules/gzip.php';
- dle_session();
- $Timer = new microTimer();
- check_xss ();
- if( $config['start_site'] == 3 AND $_SERVER['QUERY_STRING'] == "" AND !$_POST['do']) {
- $_GET['do'] = "static";
- $_REQUEST['do'] = "static";
- $_GET['page'] = "main";
- $_REQUEST['page'] = "main";
- }
- $cron = false;
- $_TIME = time();
- $config['charset'] = strtolower($config['charset']);
- $cron_time = get_vars ( "cron" );
- if (date ( "Y-m-d", $cron_time ) != date ( "Y-m-d", $_TIME )) $cron = 2;
- elseif (($cron_time + (3600 * 2)) < $_TIME) $cron = 1;
- if ($cron) include_once ENGINE_DIR . '/modules/cron.php';
- if (isset ( $_GET['year'] )) $year = intval ( $_GET['year'] ); else $year = '';
- if (isset ( $_GET['month'] )) $month = @$db->safesql ( sprintf("%02d", intval ( $_GET['month'] ) ) ); else $month = '';
- if (isset ( $_GET['day'] )) $day = @$db->safesql ( sprintf("%02d", intval ( $_GET['day'] ) ) ); else $day = '';
- if (isset ( $_GET['news_name'] )) $news_name = @$db->safesql ( strip_tags ( str_replace ( '/', '', $_GET['news_name'] ) ) ); else $news_name = '';
- if (isset ( $_GET['newsid'] )) $newsid = intval ( $_GET['newsid'] ); else $newsid = 0;
- if (isset ( $_GET['cstart'] )) $cstart = intval ( $_GET['cstart'] ); else $cstart = 0;
- if (isset ( $_GET['news_page'] )) $news_page = intval ( $_GET['news_page'] ); else $news_page = 0;
- if ($cstart > 9000000) {
- header( "Location: ".str_replace("index.php","",$_SERVER['PHP_SELF']) );
- die();
- }
- if (isset ( $_GET['catalog'] )) {
- $catalog = @strip_tags ( str_replace ( '/', '', urldecode ( $_GET['catalog'] ) ) );
- if ( $config['charset'] == "windows-1251" AND $config['charset'] != detect_encoding($catalog) ) {
- $catalog = iconv( "UTF-8", "windows-1251//IGNORE", $catalog );
- }
- $catalog = $db->safesql ( dle_substr ( $catalog, 0, 3, $config['charset'] ) );
- } else $catalog = '';
- if (isset ( $_GET['user'] )) {
- $user = @strip_tags ( str_replace ( '/', '', urldecode ( $_GET['user'] ) ) );
- if ( $config['charset'] == "windows-1251" AND $config['charset'] != detect_encoding($user) ) {
- $user = iconv( "UTF-8", "windows-1251//IGNORE", $user );
- }
- $user = $db->safesql ( $user );
- if( preg_match( "/[\||\'|\<|\>|\"|\!|\?|\$|\@|\/|\\\|\&\~\*\+]/", $user ) ) $user="";
- } else $user = '';
- if (isset ( $_GET['category'] )) {
- if (substr ( $_GET['category'], - 1, 1 ) == '/') $_GET['category'] = substr ( $_GET['category'], 0, - 1 );
- $category = explode ( '/', $_GET['category'] );
- $category = end ( $category );
- $category = $db->safesql ( strip_tags ( $category ) );
- } else $category = '';
- $PHP_SELF = $config['http_home_url'] . "index.php";
- $pm_alert = "";
- $ajax = "";
- $allow_comments_ajax = false;
- $_DOCUMENT_DATE = false;
- $user_query = "";
- $static_result = array ();
- $is_logged = false;
- $member_id = array ();
- $related_buffer = false;
- $banners = array ();
- $banner_in_news = array ();
- $js_array = array ();
- $replace_links = array ();
- $custom_news = false;
- $metatags = array (
- 'title' => $config['home_title'],
- 'description' => $config['description'],
- 'keywords' => $config['keywords'],
- 'header_title' => "" );
- //################# Определение групп пользователей
- $user_group = get_vars ( "usergroup" );
- if (! $user_group) {
- $user_group = array ();
- $db->query ( "SELECT * FROM " . USERPREFIX . "_usergroups ORDER BY id ASC" );
- while ( $row = $db->get_row () ) {
- $user_group[$row['id']] = array ();
- foreach ( $row as $key => $value ) {
- $user_group[$row['id']][$key] = stripslashes($value);
- }
- }
- set_vars ( "usergroup", $user_group );
- $db->free ();
- }
- //####################################################################################################################
- // Определение категорий и их параметры
- //####################################################################################################################
- $cat_info = get_vars ( "category" );
- if (! is_array ( $cat_info )) {
- $cat_info = array ();
- $db->query ( "SELECT * FROM " . PREFIX . "_category ORDER BY posi ASC" );
- while ( $row = $db->get_row () ) {
- $cat_info[$row['id']] = array ();
- foreach ( $row as $key => $value ) {
- $cat_info[$row['id']][$key] = stripslashes ( $value );
- }
- }
- set_vars ( "category", $cat_info );
- $db->free ();
- }
- //####################################################################################################################
- // Определение забаненных пользователей и IP
- //####################################################################################################################
- $banned_info = get_vars ( "banned" );
- if (! is_array ( $banned_info )) {
- $banned_info = array ();
- $db->query ( "SELECT * FROM " . USERPREFIX . "_banned" );
- while ( $row = $db->get_row () ) {
- if ($row['users_id']) {
- $banned_info['users_id'][$row['users_id']] = array (
- 'users_id' => $row['users_id'],
- 'descr' => stripslashes ( $row['descr'] ),
- 'date' => $row['date'] );
- } else {
- if (count ( explode ( ".", $row['ip'] ) ) == 4)
- $banned_info['ip'][$row['ip']] = array (
- 'ip' => $row['ip'],
- 'descr' => stripslashes ( $row['descr'] ),
- 'date' => $row['date']
- );
- elseif (strpos ( $row['ip'], "@" ) !== false)
- $banned_info['email'][$row['ip']] = array (
- 'email' => $row['ip'],
- 'descr' => stripslashes ( $row['descr'] ),
- 'date' => $row['date'] );
- else $banned_info['name'][$row['ip']] = array (
- 'name' => $row['ip'],
- 'descr' => stripslashes ( $row['descr'] ),
- 'date' => $row['date'] );
- }
- }
- set_vars ( "banned", $banned_info );
- $db->free ();
- }
- $category_skin = "";
- if ($category != '') $category_id = get_ID ( $cat_info, $category );
- else $category_id = false;
- if ($category_id) $category_skin = $cat_info[$category_id]['skin'];
- // #################################
- if ($news_name != '' OR $newsid) {
- $allow_sql_skin = false;
- foreach ( $cat_info as $cats ) {
- if ($cats['skin'] != '') $allow_sql_skin = true;
- }
- if ($allow_sql_skin) {
- if (!$newsid) $sql_skin = $db->super_query ( "SELECT category FROM " . PREFIX . "_post where month(date) = '$month' AND year(date) = '$year' AND dayofmonth(date) = '$day' AND alt_name ='$news_name'" );
- else $sql_skin = $db->super_query ( "SELECT category FROM " . PREFIX . "_post where id = '$newsid' AND approve" );
- $base_skin = explode ( ',', $sql_skin['category'] );
- $category_skin = $cat_info[$base_skin[0]]['skin'];
- unset ( $sql_skin );
- unset ( $base_skin );
- }
- }
- if (isset($_GET['do']) AND $_GET['do'] == "static") {
- $name = @$db->safesql( trim( totranslit( $_GET['page'], true, false ) ) );
- $static_result = $db->super_query ( "SELECT * FROM " . PREFIX . "_static WHERE name='{$name}'" );
- $category_skin = $static_result['template_folder'];
- }
- if ($category_skin != "") {
- $category_skin = trim( totranslit($category_skin, false, false) );
- if ($category_skin != '' AND @is_dir ( ROOT_DIR . '/templates/' . $category_skin )) {
- $config['skin'] = $category_skin;
- }
- } elseif (isset ( $_REQUEST['action_skin_change'] )) {
- $_REQUEST['skin_name'] = trim( totranslit($_REQUEST['skin_name'], false, false) );
- if ($_REQUEST['skin_name'] != '' AND @is_dir ( ROOT_DIR . '/templates/' . $_REQUEST['skin_name'] ) ) {
- $config['skin'] = $_REQUEST['skin_name'];
- set_cookie ( "dle_skin", $_REQUEST['skin_name'], 365 );
- }
- } elseif (isset ( $_COOKIE['dle_skin'] ) ) {
- $_COOKIE['dle_skin'] = trim( totranslit($_COOKIE['dle_skin'], false, false) );
- if ($_COOKIE['dle_skin'] != '' AND @is_dir ( ROOT_DIR . '/templates/' . $_COOKIE['dle_skin'] )) {
- $config['skin'] = $_COOKIE['dle_skin'];
- }
- }
- if (isset ( $config["lang_" . $config['skin']] ) and $config["lang_" . $config['skin']] != '') {
- if ( file_exists( ROOT_DIR . '/language/' . $config["lang_" . $config['skin']] . '/website.lng' ) ) {
- include_once ROOT_DIR . '/language/' . $config["lang_" . $config['skin']] . '/website.lng';
- } else die("Language file not found");
- } else {
- include_once ROOT_DIR . '/language/' . $config['langs'] . '/website.lng';
- }
- $config['charset'] = ($lang['charset'] != '') ? $lang['charset'] : $config['charset'];
- $smartphone_detected = false;
- if( isset( $_REQUEST['action'] ) and $_REQUEST['action'] == "mobiledisable" ) {
- $_SESSION['mobile_disable'] = 1;
- $_SESSION['mobile_enable'] = 0;
- $rewrite_url = isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : "index.php";
- header( "Location: " . $rewrite_url );
- die();
- }
- if( isset( $_REQUEST['action'] ) and $_REQUEST['action'] == "mobile" ) {
- $_SESSION['mobile_enable'] = 1;
- $_SESSION['mobile_disable'] = 0;
- $rewrite_url = isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : "index.php";
- header( "Location: " . $rewrite_url );
- die();
- }
- if( !isset( $_SESSION['mobile_disable'] ) ) $_SESSION['mobile_disable'] = 0;
- if( !isset( $_SESSION['mobile_enable'] ) ) $_SESSION['mobile_enable'] = 0;
- if( !isset ( $do ) AND isset ($_REQUEST['do']) ) $do = totranslit ( $_REQUEST['do'] ); elseif(isset ( $do )) $do = totranslit ( $do ); else $do = '';
- if( !isset ( $subaction ) AND isset ($_REQUEST['subaction']) ) $subaction = totranslit ($_REQUEST['subaction']); elseif(isset($subaction)) $subaction = totranslit($subaction); else $subaction = '';
- if( isset ($_REQUEST['doaction']) ) $doaction = totranslit ($_REQUEST['doaction']); else $doaction = "";
- if( $do == "tags" AND !$_GET['tag'] ) $do = "alltags";
- $dle_module = $do;
- if ($do == "" and ! $subaction and $year) $dle_module = "date";
- elseif ($do == "" and $catalog) $dle_module = "catalog";
- elseif ($do == "") $dle_module = $subaction;
- if ($subaction == '' AND $newsid) $dle_module = "showfull";
- $dle_module = $dle_module ? $dle_module : "main";
- require_once ENGINE_DIR . '/classes/templates.class.php';
- $tpl = new dle_template();
- if ( ($config['allow_smartphone'] AND !$_SESSION['mobile_disable'] AND $tpl->smartphone) OR $_SESSION['mobile_enable'] ) {
- if ( @is_dir ( ROOT_DIR . '/templates/smartphone' ) ) {
- $config['skin'] = "smartphone";
- $smartphone_detected = true;
- $config['allow_comments_wysiwyg'] = 0;
- }
- }
- $tpl->dir = ROOT_DIR . '/templates/' . totranslit($config['skin'], false, false);
- define ( 'TEMPLATE_DIR', $tpl->dir );
- if (isset ( $_POST['set_new_sort'] ) AND $config['allow_change_sort']) {
- $allowed_sort = array (
- 'date',
- 'rating',
- 'news_read',
- 'comm_num',
- 'title' );
- $find_sort = str_replace ( ".", "", totranslit ( $_POST['set_new_sort'] ) );
- $direction_sort = str_replace ( ".", "", totranslit ( $_POST['set_direction_sort'] ) );
- if (in_array($_POST['dlenewssortby'], $allowed_sort) AND stripos($find_sort, "dle_sort_") === 0) {
- if ($_POST['dledirection'] == "desc" or $_POST['dledirection'] == "asc") {
- $_SESSION[$find_sort] = $_POST['dlenewssortby'];
- $_SESSION[$direction_sort] = $_POST['dledirection'];
- $_SESSION['dle_no_cache'] = "1";
- }
- }
- }
- if ($config['allow_registration']) {
- include_once ENGINE_DIR . '/modules/sitelogin.php';
- if ( isset( $banned_info['ip'] ) ) $blockip = check_ip ( $banned_info['ip'] ); else $blockip = false;
- if (($is_logged AND $member_id['banned'] == "yes") OR $blockip) include_once ENGINE_DIR . '/modules/banned.php';
- if ($is_logged) {
- set_cookie ( "dle_newpm", $member_id['pm_unread'], 365 );
- if( !isset($_COOKIE['dle_newpm']) ) $_COOKIE['dle_newpm'] = 0;
- if ($member_id['pm_unread'] > intval ( $_COOKIE['dle_newpm'] ) AND !$smartphone_detected) {
- include_once ENGINE_DIR . '/modules/pm_alert.php';
- }
- }
- if ($is_logged and $user_group[$member_id['user_group']]['time_limit']) {
- if ($member_id['time_limit'] != "" and (intval ( $member_id['time_limit'] ) < $_TIME)) {
- $db->query ( "UPDATE " . USERPREFIX . "_users set user_group='{$user_group[$member_id['user_group']]['rid']}', time_limit='' WHERE user_id='$member_id[user_id]'" );
- $member_id['user_group'] = $user_group[$member_id['user_group']]['rid'];
- }
- }
- } else {
- $dle_login_hash = "";
- $_IP = get_ip();
- }
- if (!$is_logged) $member_id['user_group'] = 5;
- $tpl->load_template( 'login.tpl' );
- $tpl->set( '{login-method}', $config['auth_metod'] ? "E-Mail:" : $lang['login_metod'] );
- $tpl->set( '{registration-link}', $PHP_SELF . "?do=register" );
- $tpl->set( '{lostpassword-link}', $PHP_SELF . "?do=lostpassword" );
- $tpl->set( '{logout-link}', $PHP_SELF . "?action=logout" );
- $tpl->set( '{admin-link}', $config['http_home_url'] . $config['admin_path'] . "?mod=main" );
- $tpl->set( '{pm-link}', $PHP_SELF . "?do=pm" );
- $tpl->set( '{group}', $user_group[$member_id['user_group']]['group_prefix'].$user_group[$member_id['user_group']]['group_name'].$user_group[$member_id['user_group']]['group_suffix'] );
- if ($is_logged) {
- $tpl->set( '{login}', $member_id['name'] );
- $tpl->set( '{new-pm}', $member_id['pm_unread'] );
- $tpl->set( '{all-pm}', $member_id['pm_all'] );
- if ($member_id['favorites']) {
- $tpl->set( '{favorite-count}', count(explode("," ,$member_id['favorites'])) );
- } else $tpl->set( '{favorite-count}', '0' );
- if ( count(explode("@", $member_id['foto'])) == 2 ) {
- $tpl->set( '{foto}', 'http://www.gravatar.com/avatar/' . md5(trim($member_id['foto'])) . '?s=' . intval($user_group[$member_id['user_group']]['max_foto']) );
- } else {
- if( $member_id['foto'] and (file_exists( ROOT_DIR . "/uploads/fotos/" . $member_id['foto'] )) ) $tpl->set( '{foto}', $config['http_home_url'] . "uploads/fotos/" . $member_id['foto'] );
- else $tpl->set( '{foto}', "{THEME}/dleimages/noavatar.png" );
- }
- } else {
- $member_id['name'] ='';
- $tpl->set( '{login}', '' );
- $tpl->set( '{new-pm}', '0' );
- $tpl->set( '{all-pm}', '0' );
- $tpl->set( '{favorite-count}', '0' );
- $tpl->set( '{foto}', "{THEME}/dleimages/noavatar.png" );
- }
- if($config['allow_social'] AND $config['allow_registration'] AND !$is_logged) {
- include_once (ENGINE_DIR . '/data/socialconfig.php');
- if( !$_SESSION['state'] ) $_SESSION['state'] = md5(uniqid(rand(), TRUE));
- if ( $social_config['vk'] ) {
- $social_params = array(
- 'client_id' => $social_config['vkid'],
- 'redirect_uri' => $config['http_home_url'] . "index.php?do=auth-social&provider=vk",
- 'scope' => 'offline,wall,email',
- 'state' => $_SESSION['state'],
- 'response_type' => 'code'
- );
- $tpl->set( '[vk]', "" );
- $tpl->set( '[/vk]', "" );
- $tpl->set( '{vk_url}', 'http://oauth.vk.com/authorize'.'?' . http_build_query($social_params) );
- } else {
- $tpl->set_block( "'\\[vk\\](.*?)\\[/vk\\]'si", "" );
- $tpl->set( '{vk_url}', '' );
- }
- if ( $social_config['od'] ) {
- $social_params = array(
- 'client_id' => $social_config['odid'],
- 'redirect_uri' => $config['http_home_url'] . "index.php?do=auth-social&provider=od",
- 'response_type' => 'code'
- );
- $tpl->set( '[odnoklassniki]', "" );
- $tpl->set( '[/odnoklassniki]', "" );
- $tpl->set( '{odnoklassniki_url}', 'http://www.odnoklassniki.ru/oauth/authorize'.'?' . http_build_query($social_params) );
- } else {
- $tpl->set_block( "'\\[odnoklassniki\\](.*?)\\[/odnoklassniki\\]'si", "" );
- $tpl->set( '{odnoklassniki_url}', '' );
- }
- if ( $social_config['fc'] ) {
- $social_params = array(
- 'client_id' => $social_config['fcid'],
- 'redirect_uri' => $config['http_home_url'] . "index.php?do=auth-social&provider=fc",
- 'scope' => 'public_profile, email',
- 'display' => 'popup',
- 'state' => $_SESSION['state'],
- 'response_type' => 'code'
- );
- $tpl->set( '[facebook]', "" );
- $tpl->set( '[/facebook]', "" );
- $tpl->set( '{facebook_url}', 'https://www.facebook.com/dialog/oauth'.'?' . http_build_query($social_params) );
- } else {
- $tpl->set_block( "'\\[facebook\\](.*?)\\[/facebook\\]'si", "" );
- $tpl->set( '{facebook_url}', '' );
- }
- if ( $social_config['google'] ) {
- $social_params = array(
- 'client_id' => $social_config['googleid'],
- 'redirect_uri' => $config['http_home_url'] . "index.php?do=auth-social&provider=google",
- 'scope' => 'https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile',
- 'state' => $_SESSION['state'],
- 'response_type' => 'code'
- );
- $tpl->set( '[google]', "" );
- $tpl->set( '[/google]', "" );
- $tpl->set( '{google_url}', 'https://accounts.google.com/o/oauth2/auth'.'?' . http_build_query($social_params) );
- } else {
- $tpl->set_block( "'\\[google\\](.*?)\\[/google\\]'si", "" );
- $tpl->set( '{google_url}', '' );
- }
- if ( $social_config['mailru'] ) {
- $social_params = array(
- 'client_id' => $social_config['mailruid'],
- 'redirect_uri' => $config['http_home_url'] . "index.php?do=auth-social&provider=mailru",
- 'state' => $_SESSION['state'],
- 'response_type' => 'code'
- );
- $tpl->set( '[mailru]', "" );
- $tpl->set( '[/mailru]', "" );
- $tpl->set( '{mailru_url}', 'https://connect.mail.ru/oauth/authorize'.'?' . http_build_query($social_params) );
- } else {
- $tpl->set_block( "'\\[mailru\\](.*?)\\[/mailru\\]'si", "" );
- $tpl->set( '{mailru_url}', '' );
- }
- if ( $social_config['yandex'] ) {
- $social_params = array(
- 'client_id' => $social_config['yandexid'],
- 'redirect_uri' => $config['http_home_url'] . "index.php?do=auth-social&provider=yandex",
- 'state' => $_SESSION['state'],
- 'response_type' => 'code'
- );
- $tpl->set( '[yandex]', "" );
- $tpl->set( '[/yandex]', "" );
- $tpl->set( '{yandex_url}', 'https://oauth.yandex.ru/authorize'.'?' . http_build_query($social_params) );
- } else {
- $tpl->set_block( "'\\[yandex\\](.*?)\\[/yandex\\]'si", "" );
- $tpl->set( '{yandex_url}', '' );
- }
- } else {
- $_SESSION['state'] = false;
- $tpl->set_block( "'\\[vk\\](.*?)\\[/vk\\]'si", "" );
- $tpl->set( '{vk_url}', '' );
- $tpl->set_block( "'\\[odnoklassniki\\](.*?)\\[/odnoklassniki\\]'si", "" );
- $tpl->set( '{odnoklassniki_url}', '' );
- $tpl->set_block( "'\\[facebook\\](.*?)\\[/facebook\\]'si", "" );
- $tpl->set( '{facebook_url}', '' );
- $tpl->set_block( "'\\[google\\](.*?)\\[/google\\]'si", "" );
- $tpl->set( '{google_url}', '' );
- $tpl->set_block( "'\\[mailru\\](.*?)\\[/mailru\\]'si", "" );
- $tpl->set( '{mailru_url}', '' );
- $tpl->set_block( "'\\[yandex\\](.*?)\\[/yandex\\]'si", "" );
- $tpl->set( '{yandex_url}', '' );
- }
- if( $user_group[$member_id['user_group']]['icon'] ) $tpl->set( '{group-icon}', "<img src=\"" . $user_group[$member_id['user_group']]['icon'] . "\" alt=\"\" />" );
- else $tpl->set( '{group-icon}', "" );
- if ( $user_group[$member_id['user_group']]['allow_admin'] ) {
- $tpl->set( '[admin-link]', "" );
- $tpl->set( '[/admin-link]', "" );
- } else {
- $tpl->set_block( "'\\[admin-link\\](.*?)\\[/admin-link\\]'si", "" );
- }
- if ($config['allow_alt_url']) {
- $tpl->set( '{profile-link}', $config['http_home_url'] . "user/" . urlencode ( $member_id['name'] ) . "/" );
- $tpl->set( '{stats-link}', $config['http_home_url'] . "statistics.html" );
- $tpl->set( '{addnews-link}', $config['http_home_url'] . "addnews.html" );
- $tpl->set( '{favorites-link}', $config['http_home_url'] . "favorites/" );
- $tpl->set( '{newposts-link}', $config['http_home_url'] . "newposts/" );
- } else {
- $tpl->set( '{profile-link}', $PHP_SELF . "?subaction=userinfo&user=" . urlencode ( $member_id['name'] ) );
- $tpl->set( '{stats-link}', $PHP_SELF . "?do=stats" );
- $tpl->set( '{addnews-link}', $PHP_SELF . "?do=addnews" );
- $tpl->set( '{favorites-link}', $PHP_SELF . "?do=favorites" );
- $tpl->set( '{newposts-link}', $PHP_SELF . "?subaction=newposts" );
- }
- if ($is_logged AND strpos( $tpl->copy_template, "[xfvalue_" ) !== false) {
- $xfields = xfieldsload( true );
- $xfieldsdata = xfieldsdataload( $member_id['xfields'] );
- foreach ( $xfields as $value ) {
- $preg_safe_name = preg_quote( $value[0], "'" );
- if( empty( $xfieldsdata[$value[0]] ) ) {
- $tpl->copy_template = preg_replace( "'\\[xfgiven_{$preg_safe_name}\\](.*?)\\[/xfgiven_{$preg_safe_name}\\]'is", "", $tpl->copy_template );
- $tpl->copy_template = str_replace( "[xfnotgiven_{$value[0]}]", "", $tpl->copy_template );
- $tpl->copy_template = str_replace( "[/xfnotgiven_{$value[0]}]", "", $tpl->copy_template );
- } else {
- $tpl->copy_template = preg_replace( "'\\[xfnotgiven_{$preg_safe_name}\\](.*?)\\[/xfnotgiven_{$preg_safe_name}\\]'is", "", $tpl->copy_template );
- $tpl->copy_template = str_replace( "[xfgiven_{$value[0]}]", "", $tpl->copy_template );
- $tpl->copy_template = str_replace( "[/xfgiven_{$value[0]}]", "", $tpl->copy_template );
- }
- $tpl->copy_template = preg_replace( "'\\[xfvalue_{$preg_safe_name}\\]'i", stripslashes( $xfieldsdata[$value[0]] ), $tpl->copy_template );
- }
- } else {
- $tpl->copy_template = preg_replace( "'\\[xfgiven_(.*?)\\](.*?)\\[/xfgiven_(.*?)\\]'is", "", $tpl->copy_template );
- $tpl->copy_template = preg_replace( "'\\[xfvalue_(.*?)\\]'i", "", $tpl->copy_template );
- $tpl->copy_template = preg_replace( "'\\[xfnotgiven_(.*?)\\](.*?)\\[/xfnotgiven_(.*?)\\]'is", "", $tpl->copy_template );
- }
- $tpl->compile( 'login_panel' );
- $tpl->clear();
- if ($config['site_offline']) include_once ENGINE_DIR . '/modules/offline.php';
- require_once ENGINE_DIR . '/modules/calendar.php';
- if ($config['allow_topnews']) include_once ENGINE_DIR . '/modules/topnews.php';
- if ($config['rss_informer']) include_once ENGINE_DIR . '/modules/rssinform.php';
- if ($config['allow_links']) include_once ENGINE_DIR . '/modules/links.php';
- require_once ROOT_DIR . '/engine/engine.php';
- if ($config['allow_votes'] ) include_once ENGINE_DIR . '/modules/vote.php';
- if ( !defined('BANNERS') ) {
- if ($config['allow_banner']) include_once ENGINE_DIR . '/modules/banners.php';
- }
- if ($config['allow_tags']) include_once ENGINE_DIR . '/modules/tagscloud.php';
- ?>
Advertisement
Add Comment
Please, Sign In to add comment