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
|
|
|
|
2016-01-08 00:43:09 +01:00
|
|
|
// Add the page, if the $key is FALSE the creation of the post failure.
|
|
|
|
$key = $dbPosts->edit($args);
|
|
|
|
|
|
|
|
if($key)
|
2015-05-05 03:00:01 +02:00
|
|
|
{
|
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
|
|
|
|
2016-01-08 00:43:09 +01:00
|
|
|
// Call the plugins after post created.
|
|
|
|
Theme::plugins('afterPostModify');
|
|
|
|
|
|
|
|
// Alert the user
|
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
|
|
|
|
2016-01-08 00:43:09 +01:00
|
|
|
// Call the plugins after post created.
|
|
|
|
Theme::plugins('afterPostDelete');
|
|
|
|
|
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
|
|
|
|
2015-11-28 15:47:03 +01:00
|
|
|
$layout['title'] .= ' - '.$Language->g('Edit post').' - '.$_Post->title();
|