blob: bc5fda7cc22a4c7e4721e38b87dd60a8adff0eeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<!-- INCLUDE overall_header.html -->
<a name="maincontent"></a>
<h1>{L_EXTENSIONS_ADMIN}</h1>
<p>{L_EXTENSIONS_EXPLAIN}</p>
<fieldset>
<legend>{L_EXT_DETAILS}</legend>
<dl>
<dt><label for="display_name">{L_DISPLAY_NAME}:</label></dt>
<dd><strong id="display_name">{DISPLAY_NAME}</strong></dd>
</dl>
<dl>
<dt><label for="name">{L_CLEAN_NAME}:</label></dt>
<dd><strong id="name">{NAME}</strong></dd>
</dl>
<dl>
<dt><label for="type">{L_TYPE}:</label></dt>
<dd><p id="type">{TYPE}</p></dd>
</dl>
<dl>
<dt><label for="description">{L_DESCRIPTION}:</label></dt>
<dd><p id="description">{DESCRIPTION}</p></dd>
</dl>
<dl>
<dt><label for="version">{L_VERSION}:</label></dt>
<dd><p id="version">{VERSION}</p></dd>
</dl>
<dl>
<dt><label for="homepage">{L_HOPEPAGE}:</label></dt>
<dd><p id="homepage">{HOMEPAGE}</p></dd>
</dl>
<!-- <dl>
<dt><label for="path">{L_PATH}:</label></dt>
<dd><p id="path">{PATH}</p></dd>
</dl> -->
<dl>
<dt><label for="time">{L_TIME}:</label></dt>
<dd><p id="time">{TIME}</p></dd>
</dl>
<dl>
<dt><label for="licence">{L_LICENCE}:</label></dt>
<dd><p id="licence">{LICENCE}</p></dd>
</dl>
</fieldset>
<fieldset>
<legend>{L_REQUIREMENTS}</legend>
<!-- IF REQUIRE_PHPBB -->
<dl>
<dt><label for="require_phpbb">{L_PHPBB_VERSION}:</label></dt>
<dd><p id="require_phpbb">{REQUIRE_PHPBB}</p></dd>
</dl>
<!-- ENDIF -->
<!-- IF REQUIRE_PHP -->
<dl>
<dt><label for="require_php">{L_PHP_VERSION}:</label></dt>
<dd><p id="require_php">{REQUIRE_PHP}</p></dd>
</dl>
<!-- ENDIF -->
</fieldset>
<fieldset>
<legend>{L_AUTHOR_INFORMATION}</legend>
<!-- BEGIN authors -->
<dl>
<dt><label for="author_name">{L_AUTHOR_NAME}:</label></dt>
<dd><strong id="author_name">{authors.AUTHOR_NAME}</strong></dd>
</dl>
<!-- IF authors.AUTHOR_EMAIL -->
<dl>
<dt><label for="author_email">{L_AUTHOR_EMAIL}:</label></dt>
<dd><strong id="author_email"><a href="mailto:{authors.AUTHOR_EMAIL}">{authors.AUTHOR_EMAIL}</a></strong></dd>
</dl>
<!-- ENDIF -->
<!-- IF authors.AUTHOR_HOMEPAGE -->
<dl>
<dt><label for="author_url">{L_AUTHOR_HOMEPAGE}:</label></dt>
<dd><strong id="author_url"><a href="{authors.AUTHOR_HOMEPAGE}">{authors.AUTHOR_HOMEPAGE}</a></strong></dd>
</dl>
<!-- ENDIF -->
<!-- IF authors.AUTHOR_ROLE -->
<dl>
<dt><label for="author_role">{L_AUTHOR_ROLE}:</label></dt>
<dd><strong id="author_role">{authors.AUTHOR_ROLE}</strong></dd>
</dl>
<!-- ENDIF -->
<!-- END authors -->
</fieldset>
<!-- INCLUDE overall_footer.html -->
|