public static function groupDelete($group) { return Options::groupRemove($group); }
// Set the option to the new value Options::set($dateOption, $timestamp); $changes = true; } } } if (isset($_POST['action']) && $_POST['action'] == 'update') { Options::set($_POST['option'], Options::get($_POST['option']), $_POST['type'], $_POST['group']); $changes = true; } if (isset($_POST['action']) && $_POST['action'] == 'add') { Options::set($_POST['option_name'], $_POST['option_value'], $_POST['type'], $_POST['group']); $changes = true; } if (isset($_POST['action']) && $_POST['action'] == 'group_add') { Options::groupAdd($_POST['group_name'], $_POST['group_desc']); $changes = true; } if (isset($_POST['action']) && $_POST['action'] == 'group_remove') { Options::groupRemove($_POST['group']); $changes = true; } if (isset($_POST['action']) && $_POST['action'] == 'remove') { Options::remove($_POST['option']); $changes = true; } } $title = "Admin <small>take control</small>"; Template::setBaseDir('./assets/tmpl'); $html = Template::loadTemplate('layout', array('header' => Template::loadTemplate('header', array('title' => $title, 'user' => $user, 'admin' => $isadmin, 'msg' => $msg, 'selected' => 'admin')), 'content' => Template::loadTemplate('admin', array('changes' => $changes)), 'footer' => Template::loadTemplate('footer', array('time_start' => $time_start)))); echo $html;