bludit/kernel/admin/controllers/edit-post.php

83 lines
2.2 KiB
PHP
Raw Normal View History

2015-05-05 03:00:01 +02:00
<?php defined('BLUDIT') or die('Bludit CMS.');
2015-08-31 03:18:06 +02:00
// ============================================================================
// Check role
// ============================================================================
2015-05-05 03:00:01 +02:00
// ============================================================================
// Functions
// ============================================================================
function editPost($args)
{
global $dbPosts;
2015-07-20 05:14:12 +02:00
global $Language;
2015-08-03 02:49:12 +02:00
2015-05-05 03:00:01 +02:00
// Edit the post.
if( $dbPosts->edit($args) )
{
2015-08-31 03:18:06 +02:00
// Reindex tags, this function is in 70.posts.php
reIndexTagsPosts();
2015-08-29 07:02:09 +02:00
2015-07-22 05:15:02 +02:00
Alert::set($Language->g('The changes have been saved'));
2015-10-19 00:45:58 +02:00
Redirect::page('admin', 'edit-post/'.$args['slug']);
2015-05-05 03:00:01 +02:00
}
else
{
2015-07-22 05:15:02 +02:00
Log::set(__METHOD__.LOG_SEP.'Error occurred when trying to edit the post.');
2015-05-05 03:00:01 +02:00
}
2015-08-31 03:18:06 +02:00
return false;
2015-05-05 03:00:01 +02:00
}
function deletePost($key)
{
global $dbPosts;
2015-07-22 05:15:02 +02:00
global $Language;
2015-05-05 03:00:01 +02:00
if( $dbPosts->delete($key) )
{
2015-08-31 03:18:06 +02:00
// Reindex tags, this function is in 70.posts.php
reIndexTagsPosts();
2015-08-29 07:02:09 +02:00
2015-07-22 05:15:02 +02:00
Alert::set($Language->g('The post has been deleted successfully'));
2015-05-05 03:00:01 +02:00
Redirect::page('admin', 'manage-posts');
}
else
{
2015-07-22 05:15:02 +02:00
Log::set(__METHOD__.LOG_SEP.'Error occurred when trying to delete the post.');
2015-05-05 03:00:01 +02:00
}
}
2015-08-03 02:49:12 +02:00
// ============================================================================
// Main before POST
// ============================================================================
2015-05-05 03:00:01 +02:00
// ============================================================================
// POST Method
// ============================================================================
if( $_SERVER['REQUEST_METHOD'] == 'POST' )
{
2015-10-19 00:45:58 +02:00
if( isset($_POST['delete-post']) ) {
2015-05-05 03:00:01 +02:00
deletePost($_POST['key']);
}
else {
editPost($_POST);
}
}
// ============================================================================
2015-08-03 02:49:12 +02:00
// Main after POST
2015-05-05 03:00:01 +02:00
// ============================================================================
2015-07-26 02:25:13 +02:00
if(!$dbPosts->postExists($layout['parameters']))
{
Log::set(__METHOD__.LOG_SEP.'Error occurred when trying to get the post: '.$layout['parameters']);
2015-05-05 03:00:01 +02:00
Redirect::page('admin', 'manage-posts');
}
$_Post = buildPost($layout['parameters']);
2015-07-07 00:22:03 +02:00
$layout['title'] .= ' - '.$Language->g('Edit post').' - '.$_Post->title();