Code

Updated setup
[gosa.git] / setup / class_setupStep1.inc
1 <?php
3 /*
4    This code is part of GOsa (https://gosa.gonicus.de)
5    Copyright (C) 2007 Fabian Hickert
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20 */
23 class setup_step_1 extends setup_step
24 {
25   var $attributes = array("lang");
26   var $lang       = "en_EN";
27   var $languages  = array();
29   function setup_step_1()
30   {
31     $this->lang = get_browser_language();
33     $this->is_enabled = TRUE;
34     $this->is_active  = TRUE;
35     
36     $this->s_title      = _("Language selection");
37     $this->s_title_long = _("Please choose a language");
38     $this->s_info       = _("This step is allows you to define your prefered language.");
40     $this->languages = array("de_DE" => _("German"),
41                              "fr_FR" => _("French"),
42                              "en_EN" => _("English"),
43                              "ru_RU" => _("Russian"));
44   }
45   
46   function execute()
47   {
48     $smarty = get_smarty();
49     $smarty->assign("languages", $this->languages);
50     $smarty->assign("lang", $this->lang);
51     return($smarty->fetch(get_template_path("setup_step1.tpl",TRUE,dirname(__FILE__))));
52   }
54   function save_object()
55   {
56     if((isset($_POST['lang'])) && isset($this->languages[$_POST['lang']])) {
57       $this->lang = $_POST['lang'];
58       $this->is_completed = TRUE;
59       $_SESSION['lang'] = $this->lang;
60     }
61   }
62 }
64 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
65 ?>