aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/templates/subSilver
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2001-10-25 08:53:18 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2001-10-25 08:53:18 +0000
commitfb8511df75a824c211a697b7352e143b785865ee (patch)
tree0f6c7e55c9059bd2eef8913b533212a6b97f0dbb /phpBB/templates/subSilver
parenta719de20ea0c4673c4a534649eaf26cf7b367f61 (diff)
downloadforums-fb8511df75a824c211a697b7352e143b785865ee.tar
forums-fb8511df75a824c211a697b7352e143b785865ee.tar.gz
forums-fb8511df75a824c211a697b7352e143b785865ee.tar.bz2
forums-fb8511df75a824c211a697b7352e143b785865ee.tar.xz
forums-fb8511df75a824c211a697b7352e143b785865ee.zip
A little over half done the styles admin
Can do: Add new themes from cfg file, export theme data to cfg file, remove themes Cannot do: Created or edit themes git-svn-id: file:///svn/phpbb/trunk@1244 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates/subSilver')
-rwxr-xr-xphpBB/templates/subSilver/admin/styles_addnew_body.tpl19
-rwxr-xr-xphpBB/templates/subSilver/admin/styles_exporter.tpl14
-rwxr-xr-xphpBB/templates/subSilver/admin/styles_list_body.tpl21
3 files changed, 54 insertions, 0 deletions
diff --git a/phpBB/templates/subSilver/admin/styles_addnew_body.tpl b/phpBB/templates/subSilver/admin/styles_addnew_body.tpl
new file mode 100755
index 0000000000..6240a7986c
--- /dev/null
+++ b/phpBB/templates/subSilver/admin/styles_addnew_body.tpl
@@ -0,0 +1,19 @@
+
+<h1>{L_STYLES_TITLE}</h1>
+
+<P>{L_STYLES_ADD_TEXT}</p>
+
+<table cellspacing="1" cellpadding="4" border="0" align="center" class="forumline">
+ <tr>
+ <th class="thCornerL">{L_STYLE}</th>
+ <th class="thTop">{L_TEMPLATE}</th>
+ <th class="thCornerR">{L_ACTION}</th>
+ </tr>
+ <!-- BEGIN styles -->
+ <tr>
+ <td class="{styles.ROW_CLASS}">{styles.STYLE_NAME}</td>
+ <td class="{styles.ROW_CLASS}">{styles.TEMPLATE_NAME}</td>
+ <td class="{styles.ROW_CLASS}"><a href="{styles.U_STYLES_INSTALL}">{L_INSTALL}</a></td>
+ </tr>
+ <!-- END styles -->
+</table></form>
diff --git a/phpBB/templates/subSilver/admin/styles_exporter.tpl b/phpBB/templates/subSilver/admin/styles_exporter.tpl
new file mode 100755
index 0000000000..2056260b7e
--- /dev/null
+++ b/phpBB/templates/subSilver/admin/styles_exporter.tpl
@@ -0,0 +1,14 @@
+
+<h1>{L_STYLE_EXPORTER}</h1>
+
+<p>{L_EXPORTER_EXPLAIN}</p>
+
+<form method="post" action="{S_EXPORTER_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center" class="forumline">
+ <tr>
+
+ <th class="thHead" align="center">{L_TEMPLATE_SELECT}</th>
+ </tr>
+ <tr>
+ <td class="row1" align="center">{S_TEMPLATE_SELECT}&nbsp;&nbsp;<input type="submit" name="edit" value="{L_SUBMIT}" class="mainoption" />&nbsp;</td>
+ </tr>
+</table></form>
diff --git a/phpBB/templates/subSilver/admin/styles_list_body.tpl b/phpBB/templates/subSilver/admin/styles_list_body.tpl
new file mode 100755
index 0000000000..915fe49312
--- /dev/null
+++ b/phpBB/templates/subSilver/admin/styles_list_body.tpl
@@ -0,0 +1,21 @@
+
+<h1>{L_STYLES_TITLE}</h1>
+
+<P>{L_STYLES_TEXT}</p>
+
+<table cellspacing="1" cellpadding="4" border="0" align="center" class="forumline">
+ <tr>
+ <th class="thCornerL">{L_STYLE}</th>
+ <th class="thTop">{L_TEMPLATE}</th>
+ <th class="thTop">{L_EDIT}</th>
+ <th colspan="2" class="thCornerR">{L_DELETE}</th>
+ </tr>
+ <!-- BEGIN styles -->
+ <tr>
+ <td class="{styles.ROW_CLASS}">{styles.STYLE_NAME}</td>
+ <td class="{styles.ROW_CLASS}">{styles.TEMPLATE_NAME}</td>
+ <td class="{styles.ROW_CLASS}"><a href="{styles.U_STYLES_EDIT}">{L_EDIT}</a></td>
+ <td class="{styles.ROW_CLASS}"><a href="{styles.U_STYLES_DELETE}">{L_DELETE}</a></td>
+ </tr>
+ <!-- END styles -->
+</table></form>