bludit/bl-kernel/admin/controllers/edit-category.php

84 lines
2.4 KiB
PHP
Raw Normal View History

2017-04-17 12:49:03 +02:00
<?php defined('BLUDIT') or die('Bludit CMS.');
// ============================================================================
// Check role
// ============================================================================
if($Login->role()!=='admin') {
Alert::set($Language->g('you-do-not-have-sufficient-permissions'));
Redirect::page('admin', 'dashboard');
}
// ============================================================================
// Functions
// ============================================================================
function edit($oldCategoryKey, $newCategory)
{
global $Language;
global $dbPosts;
global $dbPages;
global $dbCategories;
2017-04-17 13:23:43 +02:00
if( Text::isEmpty($oldCategoryKey) || Text::isEmpty($newCategory) ) {
Alert::set($Language->g('Empty field'));
Redirect::page('admin', 'categories');
}
2017-04-17 12:49:03 +02:00
if( $dbCategories->edit($oldCategoryKey, $newCategory) == false ) {
Alert::set($Language->g('Already exist a category'));
}
else {
$dbPages->changeCategory($oldCategoryKey, $newCategory);
$dbPosts->changeCategory($oldCategoryKey, $newCategory);
Alert::set($Language->g('The changes have been saved'));
}
2017-04-17 13:23:43 +02:00
Redirect::page('admin', 'categories');
2017-04-17 12:49:03 +02:00
}
function delete($categoryKey)
{
global $Language;
global $dbCategories;
$dbCategories->remove($categoryKey);
Alert::set($Language->g('The changes have been saved'));
2017-04-17 13:23:43 +02:00
Redirect::page('admin', 'categories');
2017-04-17 12:49:03 +02:00
}
// ============================================================================
// Main before POST
// ============================================================================
// ============================================================================
// POST Method
// ============================================================================
if( $_SERVER['REQUEST_METHOD'] == 'POST' )
{
if( isset($_POST['delete']) ) {
delete($_POST['categoryKey']);
}
elseif( isset($_POST['edit']) ) {
2017-04-17 13:23:43 +02:00
edit($_POST['categoryKey'], $_POST['category']);
2017-04-17 12:49:03 +02:00
}
}
// ============================================================================
// Main after POST
// ============================================================================
2017-04-17 13:23:43 +02:00
$categoryKey = $layout['parameters'];
if(!$dbCategories->exists($categoryKey)) {
Log::set(__METHOD__.LOG_SEP.'Error occurred when trying to get the category: '.$categoryKey);
Redirect::page('admin', 'categories');
2017-04-17 12:49:03 +02:00
}
$category = $dbCategories->getName($layout['parameters']);
$layout['title'] .= ' - '.$Language->g('Edit category').' - '.$category;