summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-09-10 21:16:39 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-09-10 21:16:39 +0000
commit2f5f99e0b32f042aba7bd6b540ffef84230e7d03 (patch)
tree06fa7b90f74e737d35ab46c946443c497d309ca3 /templates
parentd64452c57ba2163ac454a3259e3ae9f8959abed1 (diff)
downloadthemes-2f5f99e0b32f042aba7bd6b540ffef84230e7d03.tar.gz
themes-2f5f99e0b32f042aba7bd6b540ffef84230e7d03.tar.bz2
themes-2f5f99e0b32f042aba7bd6b540ffef84230e7d03.zip
clean up, move around and consolidate tonnes of crappy and complicated core admin pages
Diffstat (limited to 'templates')
-rw-r--r--templates/admin_themes.tpl27
-rw-r--r--templates/admin_themes_manager.tpl58
-rw-r--r--templates/menu_themes_admin.tpl1
3 files changed, 28 insertions, 58 deletions
diff --git a/templates/admin_themes.tpl b/templates/admin_themes.tpl
new file mode 100644
index 0000000..ed110aa
--- /dev/null
+++ b/templates/admin_themes.tpl
@@ -0,0 +1,27 @@
+{* $Header: /cvsroot/bitweaver/_bit_themes/templates/admin_themes.tpl,v 1.1 2006/09/10 21:16:39 squareing Exp $ *}
+{strip}
+{form legend="Theme Settings"}
+ <input type="hidden" name="page" value="{$page}" />
+ <div class="row">
+ {formlabel label="Display action links as" for="site_biticon_display_style"}
+ {forminput}
+ {html_options name="site_biticon_display_style" id="site_biticon_display_style" options=$biticon_display_options selected=$gBitSystem->mConfig.site_biticon_display_style}
+ {formhelp note="Changing this setting will modify the way all action icons are displayed on your site. Icons in menus are not affected."}
+ {/forminput}
+ </div>
+
+ {foreach from=$themeSettings key=feature item=output}
+ <div class="row">
+ {formlabel label=`$output.label` for=$feature}
+ {forminput}
+ {html_checkboxes name="$feature" values="y" checked=$gBitSystem->getConfig($feature) labels=false id=$feature}
+ {formhelp note=`$output.note` page=`$output.page`}
+ {/forminput}
+ </div>
+ {/foreach}
+
+ <div class="row submit">
+ <input type="submit" name="change_prefs" value="{tr}Apply Settings{/tr}" />
+ </div>
+{/form}
+{/strip}
diff --git a/templates/admin_themes_manager.tpl b/templates/admin_themes_manager.tpl
index 6e90533..68fac44 100644
--- a/templates/admin_themes_manager.tpl
+++ b/templates/admin_themes_manager.tpl
@@ -116,64 +116,6 @@
</ul>
{/legend}
{/jstab}
-
- {jstab title="Miscellaneous"}
- {form legend="Miscellaneous Settings"}
- {*
- <div class="row">
- {formlabel label="Slideshows theme" for="site_slide_style"}
- {forminput}
- {html_options name="site_slide_style" id="site_slide_style" output=$styles values=$styles selected=$gBitSystem->mConfig.site_slide_style}
- {formhelp note="This theme will be used when viewing a wikipage as a slideshow."}
- {/forminput}
- </div>
- *}
-
- <div class="row">
- {formlabel label="Display action links as" for="site_biticon_display_style"}
- {forminput}
- {html_options name="site_biticon_display_style" id="site_biticon_display_style" options=$biticon_display_options selected=$gBitSystem->mConfig.site_biticon_display_style}
- {formhelp note="Changing this setting will modify the way all action icons are displayed on your site. Icons in menus are not affected."}
- {/forminput}
- </div>
-
- <div class="row">
- {formlabel label="Disable Javascript Tabs" for="site_disable_jstabs"}
- {forminput}
- <input type="checkbox" name="site_disable_jstabs" value='y' id="site_disable_jstabs"{if $gBitSystem->isFeatureActive( 'site_disable_jstabs' )} checked="checked"{/if} />
- {formhelp note="If you have difficulties with the javascript tabs, of you don't like them, you can disable them here."}
- {/forminput}
- </div>
-
- <div class="row">
- {formlabel label="Disable Fading" for="site_disable_fat"}
- {forminput}
- <input type="checkbox" name="site_disable_fat" value='y' id="site_disable_fat"{if $gBitSystem->isFeatureActive( 'site_disable_fat' )} checked="checked"{/if} />
- {formhelp note="Disable the fading effect used when displaying any success, warning or error messages."}
- {/forminput}
- </div>
-
- <div class="row submit">
- <input type="submit" name="themeTabSubmit" value="{tr}Apply Settings{/tr}" />
- </div>
- {/form}
- {/jstab}
-
- {*jstab title="Delete Theme"}
- {form legend="Delete Theme"}
- <div class="row">
- {formlabel label="Delete theme" for="fRemoveTheme"}
- {forminput}
- {html_options name="fRemoveTheme" id="fRemoveTheme" output=$styles values=$styles}
- {formhelp note="This theme will physically be removed from your server and you will not be able to retrieve it."}
- {/forminput}
- </div>
-
- <div class="row submit">
- <input type="submit" name="deleteTabSubmit" value="{tr}Delete{/tr}" onclick="return confirm('Are you sure you want to delete the theme {$styles[ix]|escape}? you will not be able to retrieve them!');" />
- </div>
- {/form}
- {/jstab*}
{/jstabs}
</div> <!-- end .body -->
</div> <!-- end .themes -->
diff --git a/templates/menu_themes_admin.tpl b/templates/menu_themes_admin.tpl
index 329f260..c149dae 100644
--- a/templates/menu_themes_admin.tpl
+++ b/templates/menu_themes_admin.tpl
@@ -1,5 +1,6 @@
{strip}
<ul>
+ <li><a class="item" href="{$smarty.const.KERNEL_PKG_URL}admin/index.php?page=themes" >{tr}Theme Settings{/tr}</a></li>
<li><a class="item" href="{$smarty.const.THEMES_PKG_URL}admin/admin_themes_manager.php">{tr}Themes Manager{/tr}</a></li>
<li><a class="item" href="{$smarty.const.KERNEL_PKG_URL}admin/index.php?page=layout" >{tr}Layout{/tr}</a></li>
<li><a class="item" href="{$smarty.const.THEMES_PKG_URL}admin/menus.php">{tr}Menus{/tr}</a></li>