1 {**************************************************************************}
3 {* Copyright (C) 2003-2011 Polytechnique.org *}
4 {* http://opensource.polytechnique.org/ *}
6 {* This program is free software; you can redistribute it and/or modify *}
7 {* it under the terms of the GNU General Public License as published by *}
8 {* the Free Software Foundation; either version 2 of the License, or *}
9 {* (at your option) any later version. *}
11 {* This program is distributed in the hope that it will be useful, *}
12 {* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
13 {* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
14 {* GNU General Public License for more details. *}
16 {* You should have received a copy of the GNU General Public License *}
17 {* along with this program; if not, write to the Free Software *}
18 {* Foundation, Inc., *}
19 {* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
21 {**************************************************************************}
23 {if !t($wiz_run_ajax)}
24 <script type="text/javascript">//<![CDATA[
25 {if ($stateless || $id gt $current) && $wiz_ajax}
27 function changePage(obj, id)
30 $.ajax({ url: myUrl + "/ajax",
33 error: function(request, error) {
34 document.location = myUrl;
36 success: function(data) {
37 if ({/literal}{if !$wiz_animated}true || {/if}{literal}$.browser.msie) {
38 $(".wiz_tab").removeClass("active");
39 $("#wiz_tab_" + id).addClass("active");
40 $(".wiz_content").html(data);
41 if (typeof wizPage_onLoad == 'function') {
46 $(".wiz_content").fadeOut('normal',
48 $(".wiz_tab").removeClass("active");
49 $("#wiz_tab_" + id).addClass("active");
50 $(".wiz_content").html(data).fadeIn('normal');
51 if (typeof wizPage_onLoad == 'function') {
64 function changePage(obj)
72 <div class="wizard" style="clear: both">
73 <div class="wiz_header">
74 {foreach from=$pages item=title key=id}
75 {if $stateless || $id gt $current}
76 {assign var=tag value="a"}
78 {assign var=tag value="div"}
80 <{$tag} class="wiz_tab {if $id eq $current}active{/if} {if !$stateless && $current gt $id}grayed{/if}"
81 style="display: block; float: left; width: {$tab_width}%; vertical-align: middle"
82 id="wiz_tab_{$lookup[$id]}"
84 href="{$wiz_baseurl}/{$lookup[$id]}"
85 onclick="return changePage(this, '{$lookup[$id]}')"
88 <span style="vertical-align: middle">{$title}</span>
91 <div style="clear: both"></div>
93 <div class="wiz_content" style="clear: both">
95 <div style="width: 100%; height: 100%; margin: 0; padding: 0">
96 {include core=triggers.tpl}
97 {include file=$wiz_page}
99 {if !t($wiz_run_ajax)}
103 <script type="text/javascript">
105 if (typeof wizPage_onLoad == 'function') {
106 wizPage_onLoad({/literal}'{$lookup[$current]}'{literal});
111 {* vim:set et sw=2 sts=2 sws=2 fenc=utf-8: *}