Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions development/extensions/new_in_rhea.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ A major change introduced by the new engine is how text (in posts, PMs, signatur
Extensions that are storing their own messages with BBCodes and smilies should consider adding a TextReparser class to ensure their messages are updated to the new XML format. See `New Text Reparser`_ for more information.

.. seealso::
The s9e/TextFormatter library `documentation and cookbook <http://s9etextformatter.readthedocs.io>`_.
The s9e/TextFormatter library `documentation and cookbook <https://s9etextformatter.readthedocs.io>`_.

New Text Reparser
=================
Expand Down Expand Up @@ -274,7 +274,7 @@ phpBB 3.2 includes the Font Awesome toolkit. It is used by the default style Pro

The result of this is significant template changes to Prosilver, including some new CSS classes. Extensions written for phpBB 3.1 that make use of any of Prosilver's icons may need to be adjusted to be compatible with phpBB 3.2.

The benefit of the new `Font Awesome icons <http://fontawesome.io/icons/>`_ is they make it easy to improve GUI elements of your extension. For example, if an extension has a "Delete" link or button, you can easily add a nice little Trash Can icon to the link or button:
The benefit of the new `Font Awesome icons <https://fontawesome.com>`_ is they make it easy to improve GUI elements of your extension. For example, if an extension has a "Delete" link or button, you can easily add a nice little Trash Can icon to the link or button:

.. code-block:: html

Expand Down
6 changes: 3 additions & 3 deletions development/extensions/tutorial_advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ executed until such time as false is returned.
Using service collections
=========================
In 3.1, a new concept is that of "services". You can read up on exactly what a
service is `here <http://symfony.com/doc/current/book/service_container.html>`_.
service is `here <https://symfony.com/doc/current/book/service_container.html>`_.
The rest of this guide will assume you have basic knowledge of services and how
to use them. A service
collection is basically what it sounds like: a collection of services. Basically,
Expand Down Expand Up @@ -255,7 +255,7 @@ loaded, which is especially useful in cases where service priority and/or depend
requires they be loaded in a specified order.

Ordered service collections are based on a normal service collection, but the
collection is sorted with `ksort <http://php.net/ksort>`_. The usage of the
collection is sorted with `ksort <https://php.net/ksort>`_. The usage of the
sorted service collection is nearly the same as a normal service collection,
except instead of using ``service_collection`` you should use ``ordered_service_collection``:

Expand Down Expand Up @@ -403,7 +403,7 @@ Using service decoration
========================
.. seealso::
Read about Service Decoration at
`Symfony <http://symfony.com/doc/current/components/dependency_injection/advanced.html#decorating-services>`_
`Symfony <https://symfony.com/doc/current/components/dependency_injection/advanced.html#decorating-services>`_
for complete documentation.

From phpBB 3.2, you can use service decoration as the preferred method to replace
Expand Down
24 changes: 12 additions & 12 deletions development/extensions/tutorial_bbcodes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ The following sample code shows how BBCodes can be toggled and manipulated using

.. seealso::

https://area51.phpbb.com/docs/code/3.2.x/phpbb/textformatter/parser_interface.html
http://s9etextformatter.readthedocs.io/Getting_started/Runtime_configuration/
- `phpBB API Documentation <https://area51.phpbb.com/docs/code/3.3.x/phpbb/textformatter/parser_interface.html>`_
- `Runtime configuration - s9e\\TextFormatter <https://s9etextformatter.readthedocs.io/Getting_started/Runtime_configuration/>`_


Executing PHP Code With BBCodes
Expand Down Expand Up @@ -133,9 +133,9 @@ method to read and change its attributes during parsing based on who is being qu

.. seealso::

http://s9etextformatter.readthedocs.io/Filters/Attribute_filters/
http://s9etextformatter.readthedocs.io/Filters/Tag_filters/
http://s9etextformatter.readthedocs.io/Filters/Callback_signature/
- `Attribute filters - s9e\\TextFormatter <https://s9etextformatter.readthedocs.io/Filters/Attribute_filters/>`_
- `Tag filters - s9e\\TextFormatter <https://s9etextformatter.readthedocs.io/Filters/Tag_filters/>`_
- `Callback signatures - s9e\\TextFormatter <https://s9etextformatter.readthedocs.io/Filters/Callback_signature/>`_


Template Parameters
Expand Down Expand Up @@ -242,8 +242,8 @@ your own template parameters, in addition to the default one's already available

.. seealso::

http://s9etextformatter.readthedocs.io/Templating/Template_parameters/
http://s9etextformatter.readthedocs.io/Plugins/BBCodes/Use_template_parameters/
- `Template parameters - s9e\\TextFormatter <https://s9etextformatter.readthedocs.io/Templating/Template_parameters/>`_
- `Use template parameters - s9e\\TextFormatter <https://s9etextformatter.readthedocs.io/Plugins/BBCodes/Use_template_parameters/>`_


Registering Custom Variables
Expand Down Expand Up @@ -300,10 +300,10 @@ set the value before each parsing.

.. seealso::

https://area51.phpbb.com/docs/code/3.2.x/phpbb/textformatter/parser_interface.html
http://s9etextformatter.readthedocs.io/Filters/Callback_signature/
http://s9etextformatter.readthedocs.io/Filters/Attribute_filters/
http://s9etextformatter.readthedocs.io/Filters/Tag_filters/
- `phpBB API Documentation <https://area51.phpbb.com/docs/code/3.3.x/phpbb/textformatter/parser_interface.html>`_
- `Callback signature - s9e\\TextFormatter <https://s9etextformatter.readthedocs.io/Filters/Callback_signature/>`_
- `Attribute filters - s9e\\TextFormatter <https://s9etextformatter.readthedocs.io/Filters/Attribute_filters/>`_
- `Tag filters - s9e\\TextFormatter <https://s9etextformatter.readthedocs.io/Filters/Tag_filters/>`_

Enable Text Formatter Plugins
=============================
Expand Down Expand Up @@ -354,4 +354,4 @@ settings are configured.

.. seealso::

http://s9etextformatter.readthedocs.io
`s9e\\TextFormatter <https://s9etextformatter.readthedocs.io>`_
4 changes: 2 additions & 2 deletions development/extensions/tutorial_controllers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ Tutorial: Controllers and Routes
Introduction
============

phpBB 3.1 introduced Symfony's `HttpKernel <http://symfony.com/doc/current/components/http_kernel.html>`__,
phpBB 3.1 introduced Symfony's `HttpKernel <https://symfony.com/doc/current/components/http_kernel.html>`__,
`Controller <https://symfony.com/doc/current/controller.html>`__ and
`Routing <http://symfony.com/doc/current/routing.html>`__ systems which
`Routing <https://symfony.com/doc/current/routing.html>`__ systems which
allow extensions to handle custom "front-facing" pages that users are able
to view and interact with.

Expand Down
2 changes: 1 addition & 1 deletion development/extensions/tutorial_events.rst
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ the link in the navigation bar should now display ``Demo`` instead of
phpBB’s core PHP and template files have been prepared with dozens of event locations.
However, if there are no events where your extension may need one, the phpBB development
team welcomes event requests at the
`area51.com Event Requests <http://area51.phpbb.com/phpBB/viewforum.php?f=111>`_ forum.
`area51.com Event Requests <https://area51.phpbb.com/phpBB/viewforum.php?f=111>`_ forum.

Prioritising event listeners (optional)
---------------------------------------
Expand Down