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

32 lines
1.1 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
// ============================================================================
2017-11-01 19:38:56 +01:00
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
if (createCategory($_POST)) {
Redirect::page('categories');
}
2017-04-17 12:49:03 +02:00
}
// ============================================================================
// Main after POST
// ============================================================================
// Title of the page
$layout['title'] .= ' - '.$L->g('New category');