View file modules/forum/delete_cat.php

File size: 1.29Kb
<?php
/**********************************
*	@package: PerfCMS			  *
*	@year: 2012					  *
*	@author: Artas				  *
*	@link: http://perfcms.pp.ua	  *
**********************************/
$locate = 'in_forum';
$cat_id = abs(intval($_GET['cat_id']));
if($user['level'] < 2 || $user['level'] < 6)
{  
	go('/'); 
}
if(isset($cat_id)) 
{
	if(isset($_POST['yes'])) 
	{
		$db->query("DELETE FROM `forum_c` WHERE `id` = '". $cat_id ."'");
		$db->query("DELETE FROM `forum_t` WHERE `cat_id` = '". $cat_id ."'");
		$db->query("DELETE FROM `forum_pt` WHERE `cat_id` = '". $cat_id ."'");
		go('/forum/');
	} 
	elseif(isset($_POST['no'])) 
	{
		go('/forum/'.$cat_id);
	} 
	$title = $lang->word('delete');
	require_once(SYS.'/view/header.php');
	$tpl->div('title', $lang->word('delete'));
	echo '<form action="/forum/delete_cat/'.$cat_id.'/" method="post">
			<div class="menu">
			<b>'. $lang->word('r_sure') .'</b><br/>
			<input name="yes" type="submit" value="'. $lang->word('yyes') .'" /> <input name="no" type="submit" value="'. $lang->word('yno') .'" /><br/>
		</div>
		</form>';
		
	$tpl->div('block', NAV .'<a href="/forum/">'. $lang->word('forum') .'</a><br/>' . HICO .'<a href="/">'. $lang->word('home').'</a>');
	require_once(SYS.'/view/footer.php');
} 
else 
{ 
	go('/'); 
} 
?>