88 lines
2.8 KiB
PHP
88 lines
2.8 KiB
PHP
<?php
|
|
ini_set( 'display_errors', 1 );
|
|
switch(@$_POST['act']) {
|
|
|
|
case 'save-text':
|
|
if (@$_POST['act'] == 'save') {
|
|
\DB::set("UPDATE `pages` SET
|
|
`title`=?, `txt`=?, `t`=?, `keywords`=?, `alias`=?, `description`=?, `category`=?, `user_id`=?, `d`=? WHERE `id`=?", array(
|
|
$_POST['title'], $_POST['txt'],
|
|
time(), $_POST['keywords'], $_POST['alias'], $_POST['description'], $_POST['category'], $_SESSION['user_id'], $_POST['d'], $_GET['id']
|
|
));
|
|
|
|
} else {
|
|
$id = \DB::add("INSERT INTO `pages` (`title`, `txt`, `t`, `keywords`, `alias`, `description`, `category`, `user_id`, `d`, `status`) VALUES (?,?,?,?,?,?,?,?,?,1)", array(
|
|
$_POST['title'], $_POST['txt'],
|
|
time(), $_POST['keywords'],
|
|
$_POST['alias'], $_POST['description'], $_POST['category'], $_SESSION['user_id'], $_POST['d']
|
|
));
|
|
header('Location: /page_edit/' . $id);
|
|
}
|
|
break;
|
|
|
|
case 'foto_upload':
|
|
@mkdir( 'img/' . $_SERVER['SERVER_NAME'] . '/pages', 0700 );
|
|
@mkdir( 'img/' . $_SERVER['SERVER_NAME'] . '/pages/' . $_SESSION['id'], 0700 );
|
|
|
|
|
|
if ( $_FILES['file']['tmp_name'] ){
|
|
if ( preg_match( '/[.](jpg)|(jpeg)|(JPG)|(JPEG)$/', $_FILES['file']['name'] ) ){
|
|
$img_name = \core::genpassword( 30 );
|
|
$source = $_FILES['file']['tmp_name'];
|
|
$target_original = 'img/' . $_SERVER['SERVER_NAME'] . '/pages/' . $_SESSION['id'] . '/' . $img_name . '.jpg';
|
|
copy( $source, $target_original );
|
|
|
|
\DB::add( "INSERT INTO `img` (`filename`, `content_type`, `content_id`) VALUES (?, ?, ?)", array(
|
|
$img_name,
|
|
'pages',
|
|
$_SESSION['id'] )
|
|
);
|
|
}
|
|
}
|
|
break;
|
|
case 'save-settings':
|
|
|
|
|
|
$json=\json::to_j($_POST);
|
|
|
|
$id=\DB::getValue("SELECT `id` FROM `settings` WHERE `mod`='page_edit' LIMIT 1");
|
|
if ($id)
|
|
\DB::set("UPDATE `settings` SET `json` =? WHERE `mod`='page_edit' LIMIT 1", $json);
|
|
else
|
|
\DB::add("INSERT INTO `settings` (`mod`, `json`) VALUES (?, ?)", array('page_edit', $json));
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
case 'update_settings':
|
|
unset($_POST['act']);
|
|
$db->update_settings($_POST);
|
|
break;
|
|
|
|
case 'upload_main_img':
|
|
|
|
//echo 'uploader';
|
|
$settings_mod = $db -> get_settings_json($_POST['mod']);
|
|
unset($_POST['act']);
|
|
$tmp_name = $db -> upload_img( $_FILES, 'pages', 'main_img');
|
|
$db -> resize_img($tmp_name, $settings_mod['w'], $settings_mod['h'], 80, false, 'pages');
|
|
$db -> resize_img($tmp_name, $settings_mod['p_w'], $settings_mod['p_h'], 80, true, 'pages');
|
|
unset($a);
|
|
$a['id']=$_POST['id'];
|
|
$json=$db->get_val('pages', $a, 'json');
|
|
$massiv=$db->from_j($db-> clear_json($json));
|
|
$massiv['main_img']=$tmp_name;
|
|
$json=$db->to_j($massiv);
|
|
$db->free_sql( "UPDATE `pages` SET `json` = '" . $json . "' WHERE `id` = " . $_POST['id'] );
|
|
echo $tmp_name;
|
|
break;
|
|
*/
|
|
|
|
|
|
default:
|
|
}
|
|
?>
|