mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
30 lines
468 B
PHP
30 lines
468 B
PHP
<?
|
|
|
|
if (!check_perms('users_mod') ) {
|
|
error(403);
|
|
}
|
|
if (is_number($_GET['id'])) {
|
|
$ID = $_GET['id'];
|
|
$Event = SiteHistory::get_event($ID);
|
|
}
|
|
|
|
if ($ID) {
|
|
$Title = "Edit";
|
|
} else {
|
|
$Title = "Create";
|
|
}
|
|
View::show_header($Title, "jquery.validate,form_validate,site_history");
|
|
|
|
?>
|
|
|
|
<div class="header">
|
|
<? if ($ID) { ?>
|
|
<h2>Edit event</h2>
|
|
<? } else { ?>
|
|
<h2>Create new event</h2>
|
|
<? } ?>
|
|
</div>
|
|
|
|
<?
|
|
SiteHistoryView::render_edit_form($Event);
|
|
View::show_footer();
|