Skip to content

Commit 44465cf

Browse files
committed
Add section help
1 parent d4540bb commit 44465cf

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

language/en/common.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
'PHPBB_SKELETON_EXT' => 'Skeleton Extension',
2727
'PHPBB_CREATE_SKELETON_EXT' => 'Create skeleton extension',
2828
'PHPBB_SKELETON_EXT_DOCS' => 'Read the Documentation',
29+
'PHPBB_SKELETON_EXT_HELP' => 'Learn More',
2930

3031
'EXTENSION_CLI_SKELETON_SUCCESS' => "<info>Extension created successfully.\nCopy the extension from `store/tmp-ext/` into the `ext/` folder.</info>",
3132
'SKELETON_CLI_COMPOSER_QUESTIONS' => '<comment>Enter composer.json details (hit enter to leave an option empty)</comment>',

styles/prosilver/template/skeleton_body.html

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ <h2>{{ lang('PHPBB_CREATE_SKELETON_EXT') }}</h2>
1919

2020
<div class="panel bg1">
2121
<div class="inner">
22-
<p class="rightside"><a href="https://area51.phpbb.com/docs/dev/3.3.x/extensions/skeleton_extension.html" target="_blank"><i class="icon fa-book fa-fw" aria-hidden="true"></i><span>{{ lang('PHPBB_SKELETON_EXT_DOCS') }}</span></a></p>
22+
<p class="rightside">
23+
<a href="https://area51.phpbb.com/docs/dev/3.3.x/extensions/skeleton_extension.html#extension-packaging" target="_blank">
24+
<i class="icon fa-book fa-fw" aria-hidden="true"></i><span>{{ lang('PHPBB_SKELETON_EXT_HELP') }}</span>
25+
</a>
26+
</p>
2327
<h2 class="solo">{{ lang('SKELETON_TITLE_EXTENSION_INFO') }}</h2>
2428
{% for extension in loops.extension %}
2529
<div class="{% if loop.index is odd %}column1{% else %}column2{% endif %}">
@@ -36,6 +40,11 @@ <h2 class="solo">{{ lang('SKELETON_TITLE_EXTENSION_INFO') }}</h2>
3640

3741
<div class="panel bg2">
3842
<div class="inner">
43+
<p class="rightside">
44+
<a href="https://area51.phpbb.com/docs/dev/3.3.x/extensions/skeleton_extension.html#authors" target="_blank">
45+
<i class="icon fa-book fa-fw" aria-hidden="true"></i><span>{{ lang('PHPBB_SKELETON_EXT_HELP') }}</span>
46+
</a>
47+
</p>
3948
<h2 class="solo">{{ lang('SKELETON_TITLE_AUTHOR_INFO') }}</h2>
4049
<div class="skeleton-author" style="overflow: hidden;">
4150
{% for author in loops.author %}
@@ -61,6 +70,11 @@ <h2 class="solo">{{ lang('SKELETON_TITLE_AUTHOR_INFO') }}</h2>
6170

6271
<div class="panel bg1">
6372
<div class="inner">
73+
<p class="rightside">
74+
<a href="https://area51.phpbb.com/docs/dev/3.3.x/extensions/skeleton_extension.html#requirements" target="_blank">
75+
<i class="icon fa-book fa-fw" aria-hidden="true"></i><span>{{ lang('PHPBB_SKELETON_EXT_HELP') }}</span>
76+
</a>
77+
</p>
6478
<h2 class="solo">{{ lang('SKELETON_TITLE_REQUIREMENT_INFO') }}</h2>
6579
{% for requirement in loops.requirement %}
6680
<div class="{% if loop.index is odd %}column1{% else %}column2{% endif %}">
@@ -77,6 +91,11 @@ <h2 class="solo">{{ lang('SKELETON_TITLE_REQUIREMENT_INFO') }}</h2>
7791

7892
<div class="panel bg2">
7993
<div class="inner">
94+
<p class="rightside">
95+
<a href="https://area51.phpbb.com/docs/dev/3.3.x/extensions/skeleton_extension.html#components" target="_blank">
96+
<i class="icon fa-book fa-fw" aria-hidden="true"></i><span>{{ lang('PHPBB_SKELETON_EXT_HELP') }}</span>
97+
</a>
98+
</p>
8099
<h2 class="solo">{{ lang('SKELETON_TITLE_COMPONENT_INFO') }}</h2>
81100
{% for group in ['DATABASE', 'FRONT_END', 'BACK_END', 'CONTROL_PANELS', 'OTHER', 'TEST_DEPLOY'] %}
82101
<div class="{% if loop.index is odd %}column1{% else %}column2{% endif %}">

0 commit comments

Comments
 (0)