Просмотр файла element_subforum_other_create.php

Размер файла: 1.45Kb
<?php
	/// Общий форум
	
	if ($subforum['lost_dostype'] > 0) {
		if ($user['lost_privilege'] != 3 AND !in_array($user['lost_id'],$moderation)) {
			$title = 'Доступ закрыт';
			$error1 = 'Вы не можете смотреть этот раздел, так как руководство ограничило к нему доступ<br/><br/><a class="white" href="/forum">К списку разделов</a>';
			require_once 'element_error_page.php';
			exit;
		}
	}
	
	if ($subforum['lost_news'] > 0 AND $user['lost_privilege'] < 2) {
		$title = 'Доступ закрыт';
		$error1 = 'Вы не можете смотреть этот раздел, так как руководство ограничило к нему доступ<br/><br/><a class="white" href="/forum">К списку разделов</a>';
		require_once 'element_error_page.php';
		exit;
	}
	
	if ($user['lost_level'] < element_settings_game('lost_forum_create_topic') AND $user['lost_privilege'] < 2) {
		$title = 'Доступ закрыт';
		$error1 = 'Вы не можете смотреть этот раздел, так как руководство ограничило к нему доступ<br/><br/><a class="white" href="/forum">К списку разделов</a>';
		require_once 'element_error_page.php';
		exit;
	}
	
	$title = 'Новый топик';
	require_once './element_include/element_head.php';
	require_once './element_include/element_header_user_true.php';
	echo '<div class="nfl p5 mb5 mt5 small mlra">';
	echo '<div class="cntr"><img width="16" height="16" alt="" src="/images/icons/forum_new.png"/> <a href="/forum">Форум</a><span class="white"> / '.$subforum['lost_name'].'</span></div>';
	
	echo '</div>';

?>