2009-01-22 01:52:41 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.");
|
|
|
|
|
/**
|
|
|
|
|
* Gallery - a web based photo album viewer and editor
|
2009-05-13 20:04:58 +00:00
|
|
|
* Copyright (C) 2000-2009 Bharat Mediratta
|
2009-01-22 01:52:41 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or (at
|
|
|
|
|
* your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
*/
|
2009-06-10 21:23:57 -07:00
|
|
|
class Admin_Theme_Options_Controller extends Admin_Controller {
|
2009-01-22 01:52:41 +00:00
|
|
|
public function index() {
|
|
|
|
|
$view = new Admin_View("admin.html");
|
2009-06-10 21:23:57 -07:00
|
|
|
$view->content = new View("admin_theme_options.html");
|
2009-11-18 14:37:49 -08:00
|
|
|
|
|
|
|
|
$theme_name = theme::$site;
|
|
|
|
|
$info = theme::get_info($theme_name);
|
|
|
|
|
|
|
|
|
|
// Don't use the Kohana cascading file system because we don't want to mess up the admin theme
|
|
|
|
|
$theme_helper = THEMEPATH . "$theme_name/helpers/{$theme_name}.php";
|
|
|
|
|
@require_once($theme_helper);
|
2009-11-19 11:43:34 -08:00
|
|
|
$view->content->form = call_user_func_array(array(theme::$site, "get_admin_form"),
|
|
|
|
|
array("admin/theme_options/save/"));
|
2009-11-18 14:37:49 -08:00
|
|
|
|
|
|
|
|
$view->content->title = t("%name options", array("name" => $info->name));
|
|
|
|
|
|
2009-01-22 01:52:41 +00:00
|
|
|
print $view;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function save() {
|
2009-06-01 22:40:22 -07:00
|
|
|
access::verify_csrf();
|
|
|
|
|
|
2009-11-18 14:37:49 -08:00
|
|
|
// Don't use the Kohana cascading file system because we don't want to mess up the admin theme
|
|
|
|
|
$theme_name = theme::$site;
|
|
|
|
|
$theme_helper = THEMEPATH . "$theme_name/helpers/{$theme_name}.php";
|
|
|
|
|
@require_once($theme_helper);
|
2009-02-08 10:18:09 +00:00
|
|
|
|
2009-11-18 14:37:49 -08:00
|
|
|
$info = theme::get_info($theme_name);
|
2009-02-08 10:18:09 +00:00
|
|
|
|
2009-11-19 11:43:34 -08:00
|
|
|
$form = call_user_func_array(array(theme::$site, "get_admin_form"),
|
|
|
|
|
array("admin/theme_options/save/"));
|
2009-11-18 14:37:49 -08:00
|
|
|
if ($form->validate()) {
|
2009-11-19 11:43:34 -08:00
|
|
|
|
|
|
|
|
$view->content->form = call_user_func_array(array(theme::$site, "update_options"),
|
|
|
|
|
array($form));
|
2009-02-26 02:47:38 +00:00
|
|
|
|
2009-11-18 14:37:49 -08:00
|
|
|
message::success(t("Updated %name options", array("name" => $info->name)));
|
2009-06-10 21:23:57 -07:00
|
|
|
url::redirect("admin/theme_options");
|
2009-01-22 02:59:19 +00:00
|
|
|
} else {
|
2009-01-23 08:33:22 +00:00
|
|
|
$view = new Admin_View("admin.html");
|
|
|
|
|
$view->content = $form;
|
2009-11-18 14:37:49 -08:00
|
|
|
$view->content->title = t("%name options", array("name" => $info->name));
|
2009-01-23 08:33:22 +00:00
|
|
|
print $view;
|
2009-01-22 02:25:10 +00:00
|
|
|
}
|
2009-01-22 01:52:41 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|