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

44 lines
1.5 KiB
PHP
Raw Normal View History

2017-04-17 12:49:03 +02:00
<?php defined('BLUDIT') or die('Bludit CMS.');
// ============================================================================
// Check role
// ============================================================================
2018-05-20 21:48:43 +02:00
checkRole(array('admin'));
2017-04-17 12:49:03 +02:00
// ============================================================================
// Functions
// ============================================================================
// ============================================================================
// Main before POST
// ============================================================================
// ============================================================================
// POST Method
// ============================================================================
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
2018-07-25 23:42:00 +02:00
if ($_POST['action']=='delete') {
deleteCategory($_POST);
2018-07-25 23:42:00 +02:00
} elseif ($_POST['action']=='edit') {
editCategory($_POST);
2017-04-17 12:49:03 +02:00
}
2017-07-29 21:03:18 +02:00
Redirect::page('categories');
2017-04-17 12:49:03 +02:00
}
// ============================================================================
// Main after POST
// ============================================================================
2017-04-17 13:23:43 +02:00
$categoryKey = $layout['parameters'];
2018-08-02 22:33:53 +02:00
if (!$categories->exists($categoryKey)) {
2017-04-17 13:23:43 +02:00
Log::set(__METHOD__.LOG_SEP.'Error occurred when trying to get the category: '.$categoryKey);
2017-05-16 00:46:20 +02:00
Redirect::page('categories');
2017-04-17 12:49:03 +02:00
}
2018-08-02 22:33:53 +02:00
$categoryMap = $categories->getMap($categoryKey);
2017-04-17 12:49:03 +02:00
// Title of the page
$layout['title'] .= ' - '.$L->g('Edit Category').' [ '.$categoryMap['name'] . ' ] ';