Skip to content

Commit cac8dcb

Browse files
committed
Merge branch 'remove/wiki' into 3.2.x
2 parents d933849 + d6c72f0 commit cac8dcb

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

development/extensions/modification_to_extension.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ In the ``getSubscribedEvents()`` method we tell the system which events we
689689
want to subscribe our new custom functions to.
690690
In our case we want to subscribe to two events: the ``core.page_header`` event
691691
and the ``core.user_setup`` event (a full list
692-
of events can be found `here <https://wiki.phpbb.com/Event_List>`_):
692+
of events can be found `here <https://area51.phpbb.com/docs/dev/3.3.x/extensions/events_list.html>`_):
693693

694694
.. code-block:: php
695695
@@ -756,7 +756,7 @@ you need one file per template event.
756756
The filename includes the event name. In order to add the Newspage link
757757
next to the FAQ link, we need to use the
758758
``'overall_header_navigation_prepend'`` event (a full list of events can be
759-
found `here <https://wiki.phpbb.com/Event_List>`_).
759+
found `here <https://area51.phpbb.com/docs/dev/3.3.x/extensions/events_list.html>`_).
760760

761761
So we add the
762762
``styles/prosilver/template/event/overall_header_navigation_prepend_listener.html``
@@ -787,8 +787,7 @@ Compatibility
787787
=============
788788

789789
In some cases the compatibility of functions and classes could not be kept,
790-
while increasing their power for 3.1. You can see a list of these in the Wiki-Article
791-
about `PhpBB3.1 <https://wiki.phpbb.com/PhpBB3.1>`_
790+
while increasing their power for 3.1.
792791

793792
Pagination
794793
----------

development/extensions/tutorial_authentication.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ authentication provider class is show below:
108108
109109
The service file
110110
^^^^^^^^^^^^^^^^
111-
For proper `dependency injection <https://wiki.phpbb.com/Dependency_Injection_Container>`_
111+
For proper :ref:`dependency injection <dependency-injection>`
112112
the provider must be added to ``services.yml``. The name of the service
113113
must be in the form of ``auth.provider.<service name>`` in order for phpBB to register it.
114114
The arguments are those of the provider's constructor and may be empty if no arguments are

development/extensions/tutorial_events.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ multiple useful injection points. A typical template event looks like:
3030

3131
.. seealso::
3232

33-
View the full list of `Template events <https://wiki.phpbb.com/Event_List#Template_Events>`_ in our Wiki.
33+
View the full list of `Template events <https://area51.phpbb.com/docs/dev/3.3.x/extensions/events_list.html#template-events>`_ in our Wiki.
3434

3535
Listening for an event
3636
----------------------
@@ -115,7 +115,7 @@ Listeners
115115

116116
.. seealso::
117117

118-
View the full list of supported `PHP events <https://wiki.phpbb.com/Event_List>`_ in our Wiki.
118+
View the full list of supported `PHP events <https://area51.phpbb.com/docs/dev/3.3.x/extensions/events_list.html#php-events>`_ in our Wiki.
119119

120120
The event listener
121121
------------------

development/extensions/tutorial_key_concepts.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ This tutorial explains:
1616
* `Language files`_
1717
* `Javascript and CSS files`_
1818

19+
.. _dependency-injection:
1920

2021
Dependency injection
2122
====================
@@ -74,8 +75,7 @@ controllers and event listeners. The exceptions to this are any ACP/MCP/UCP file
7475

7576
.. seealso::
7677

77-
* `Dependency Injection Container Wiki <https://wiki.phpbb.com/Dependency_Injection_Container>`_
78-
* `Symfony: The DependencyInjection Component <http://symfony.com/doc/2.3/components/dependency_injection/introduction.html>`_
78+
* `Symfony: The DependencyInjection Component <https://symfony.com/doc/2.8/components/dependency_injection.html>`_
7979

8080

8181
PHP files
@@ -197,7 +197,7 @@ An example directory structure for an extension with universal (all) files and t
197197
.. seealso::
198198

199199
* `Twig Template Syntax <http://twig.sensiolabs.org/>`_ at Sensio Labs.
200-
* `phpBB Template Syntax <https://wiki.phpbb.com/Tutorial.Template_syntax#Syntax_elements>`_ Wiki page.
200+
* :ref:`Tutorial: Template Syntax <tutorial-template-syntax>`.
201201
* The phpBB Customisation Database `Template Validation Policy <https://www.phpbb.com/extensions/rules-and-policies/validation-policy/#templates>`_.
202202

203203
Language files

development/extensions/tutorial_templates.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _tutorial-template-syntax:
2+
13
=========================
24
Tutorial: Template syntax
35
=========================

development/language/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Using the Language System in template files
110110
===========================================
111111

112112
Language entries in
113-
`Using the Template System <https://wiki.phpbb.com/Using_the_phpBB3.0_Template_System>`_
113+
:ref:`Template Syntax <tutorial-template-syntax>`
114114
are a major improvement since phpBB 3.0. There is no longer a need to manually
115115
assign these in the PHP file; language entries of loaded language files can be
116116
used automatically.

readme.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ Documentation for board visitors, moderators and administrators. Can be seen onl
55
## Patches
66

77
Do you have an improvement? Did you fix a bug? Fork our GitHub repo, make your changes in a separate branch and send a pull request.
8-
Please read the [Git Sub-Project Guidelines](http://wiki.phpbb.com/Sub-Project_Contribution_Guidelines) before forking and fixing bugs.
98

109
## Translations
1110

0 commit comments

Comments
 (0)