Пример #1
0
Файл: add.php Проект: ssrsfs/blg
<?php

require_once 'options.inc.php';
$category = Model_News_Category::Create();
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    require_once 'update.inc.php';
    if ($category->exists() && !$category->dirty()) {
        Typeframe::Redirect('Category created.', Typeframe::CurrentPage()->applicationUri() . '/categories');
    }
}