diff options
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/adm/style/install/install.html | 0 | ||||
-rw-r--r-- | phpBB/adm/style/install/snippet_checks.html | 21 | ||||
-rw-r--r-- | phpBB/adm/style/install/snippet_options.html | 23 |
3 files changed, 44 insertions, 0 deletions
diff --git a/phpBB/adm/style/install/install.html b/phpBB/adm/style/install/install.html new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/phpBB/adm/style/install/install.html diff --git a/phpBB/adm/style/install/snippet_checks.html b/phpBB/adm/style/install/snippet_checks.html new file mode 100644 index 0000000000..2b711bb77c --- /dev/null +++ b/phpBB/adm/style/install/snippet_checks.html @@ -0,0 +1,21 @@ +<!-- IF .checks --> + <fieldset> + <!-- BEGIN checks --> + <!-- IF checks.S_LEGEND --> + <!-- IF not checks.S_FIRST_ROW --> + </fieldset> + + <fieldset> + <!-- ENDIF --> + <legend>{checks.LEGEND}</legend> + <!-- IF checks.LEGEND_EXPLAIN --><p>{checks.LEGEND_EXPLAIN}</p><!-- ENDIF --> + <!-- ELSE --> + + <dl> + <dt>{checks.TITLE}:<!-- IF checks.S_EXPLAIN --><br /><span class="explain">{checks.TITLE_EXPLAIN}</span><!-- ENDIF --></dt> + <dd>{checks.RESULT}</dd> + </dl> + <!-- ENDIF --> + <!-- END checks --> + </fieldset> +<!-- ENDIF --> diff --git a/phpBB/adm/style/install/snippet_options.html b/phpBB/adm/style/install/snippet_options.html new file mode 100644 index 0000000000..a887a1da83 --- /dev/null +++ b/phpBB/adm/style/install/snippet_options.html @@ -0,0 +1,23 @@ +<!-- IF .options --> + <fieldset> + + <!-- BEGIN options --> + <!-- IF options.S_LEGEND --> + <!-- IF not options.S_FIRST_ROW --> + </fieldset> + + <fieldset> + <!-- ENDIF --> + <legend>{options.LEGEND}</legend> + <!-- ELSE --> + + <dl> + <dt><label for="{options.KEY}">{options.TITLE}:</label><!-- IF options.S_EXPLAIN --><br /><span class="explain">{options.TITLE_EXPLAIN}</span><!-- ENDIF --></dt> + <dd>{options.CONTENT}</dd> + </dl> + + <!-- ENDIF --> + <!-- END options --> + + </fieldset> +<!-- ENDIF --> |