From f82430dd3b92a2e37a58108fa81cd0bc6255fb00 Mon Sep 17 00:00:00 2001 From: plegall Date: Wed, 17 Mar 2010 00:48:38 +0000 Subject: feature 1514: new screen to manage installed themes; activate, deactivate, delete, set as default. plugins.class.php was merged back to a state it doesn't manage themes at all. themes.class.php was created instead, from a duplication of plugins.class.php and strongly modified then. feature 1507: the display of available themes is now much more "graphic". git-svn-id: http://piwigo.org/svn/trunk@5153 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/themes/default/template/themes_installed.tpl | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 admin/themes/default/template/themes_installed.tpl (limited to 'admin/themes/default/template/themes_installed.tpl') diff --git a/admin/themes/default/template/themes_installed.tpl b/admin/themes/default/template/themes_installed.tpl new file mode 100644 index 000000000..8c0fca6fa --- /dev/null +++ b/admin/themes/default/template/themes_installed.tpl @@ -0,0 +1,42 @@ +
+

{'Installed Themes'|@translate}

+
+ +
+ +

Active Themes

+{if isset($active_themes)} +
+{foreach from=$active_themes item=theme} +
+
{$theme.name}{if $theme.is_default} (default){/if}
+
+
+ {'Deactivate'|@translate} +{if not $theme.is_default} + | {'Default'|@translate} +{/if} +
+
+{/foreach} +
+{/if} + +{if isset($inactive_themes)} +

Inactive Themes

+
+{foreach from=$inactive_themes item=theme} +
+
{$theme.name}
+
+ + +
+{/foreach} +
+{/if} + +
\ No newline at end of file -- cgit v1.2.3