<?
/*
=============================================
Движок: SHCMS Engine
=============================================
Название файла: Добавление Новости
=============================================
Official website: http://shcms.ru
=============================================
*/
define('SHCMS', true);
include_once'../system/inc/basic_settings.php';
$shcmsengine['title'] = 'Добавить новость';
include_once'../template/head.php';
$adminka->admin();
if(isset($_POST['submit']))
{
$submit = $_POST['submit'];
}
if(isset($submit))
{
if(isset($_POST['title']))
{
$title = $_POST['title'];
}
if(isset($_POST['text']))
{
$text = $_POST['text'];
}
if(isset($_POST['text2']))
{
$text2 = $_POST['text2'];
}
if(isset($_POST['comm_news']))
{
$comm_news = $_POST['comm_news'];
}
if(isset($_POST['news_index']))
{
$news_index = $_POST['news_index'];
}
if(isset($_POST['categories']))
{
$categories = $_POST['categories'];
}
if(isset($_POST['all_news']))
{
$all_news = $_POST['all_news'];
}
$title = htmlspecialchars($title);
$text = htmlspecialchars($text);
$text2 = htmlspecialchars($text2);
$title = stripslashes($title);
if(strlen($title) <0 || strlen($title) >100)
{
echo '<div class="errors">Заголовок должно быть не больше 100 символов</div>';
include_once'../template/foot.php';
exit;
}
if(empty($title) or empty($text) or empty($text2))
{
echo '<div class="errors">Заполните все поля</div>';
include_once'../template/foot.php';
exit;
}
$shcms_my = mysql_query("INSERT INTO `uncos` (`title`,`text`,`time`,`user_id`,`komm`,`text2`,`news_index`,`categories`,`all_news`) VALUES ('$title','$text','$time_date','$user_id','$comm_news','$text2','$news_index','$categories','$all_news')");
if($shcms_my == true)
{
messag("Новость успешно опубликовано");
include_once'../template/foot.php';
exit;
}
else
{
errors("Ошибка добавление новости");
include_once'../template/foot.php';
exit;
}
}
else
{
$form = new form('?');
$form->input('Заголовок:*','title','text',false,'<br/>');
$form->textarea('Краткое описания:*','text2');
$form->textarea('Полное описания:*','text');
$form->select_while('Категория:','categories','`id`,`name`','`uncos_category`','id','name');
$form->input(false,'comm_news','checkbox',1,true,false,false,'Добавлять комментарии');
$form->input(false,'news_index','checkbox',1,true,false,false,'Опубликовать на главной');
$form->input(false,'all_news','checkbox',1,true,false,false,'Не добавлять в раздел "Все новости"');
$form->submit('Добавить','submit');
$form->submit('Обновить','refresh');
$form->finish();
}
include_once'../template/foot.php';
?>