53 lines
1.5 KiB
PHP
Raw Normal View History

2015-05-05 01:00:01 +00:00
<?php defined('BLUDIT') or die('Bludit CMS.');
2015-08-02 21:49:12 -03:00
// ============================================================================
// Check role
// ============================================================================
2015-07-14 01:41:32 -03:00
// ============================================================================
// Functions
// ============================================================================
2015-05-05 01:00:01 +00:00
function addPage($args)
{
global $dbPages;
2015-07-20 00:14:12 -03:00
global $Language;
2015-08-02 21:49:12 -03:00
2016-01-07 20:43:09 -03:00
// Add the page, if the $key is FALSE the creation of the post failure.
$key = $dbPages->add($args);
if($key)
2015-05-05 01:00:01 +00:00
{
2017-04-26 18:56:10 +02:00
// Re index categories
reIndexCategoriesPages();
2016-01-07 20:43:09 -03:00
// Call the plugins after page created.
Theme::plugins('afterPageCreate');
// Alert the user
2015-07-22 00:15:02 -03:00
Alert::set($Language->g('Page added successfully'));
2015-05-05 01:00:01 +00:00
Redirect::page('admin', 'manage-pages');
}
else
{
2015-07-22 00:15:02 -03:00
Log::set(__METHOD__.LOG_SEP.'Error occurred when trying to create the page.');
2015-05-05 01:00:01 +00:00
}
}
2015-08-02 21:49:12 -03:00
// ============================================================================
// Main before POST
// ============================================================================
2015-07-14 01:41:32 -03:00
// ============================================================================
// POST Method
// ============================================================================
2015-05-05 01:00:01 +00:00
if( $_SERVER['REQUEST_METHOD'] == 'POST' )
{
addPage($_POST);
2015-05-30 22:06:55 -03:00
}
2015-08-02 21:49:12 -03:00
// ============================================================================
// Main after POST
// ============================================================================