Skip to content

Commit 45da831

Browse files
committed
docs: use relative paths
1 parent 3ee884e commit 45da831

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

user_guide_src/source/general/modules.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ language files, etc. Modules may contain as few, or as many, of these as you lik
1515
Namespaces
1616
==========
1717

18-
The core element of the modules functionality comes from the :doc:`PSR-4 compatible autoloading </concepts/autoloader>`
18+
The core element of the modules functionality comes from the :doc:`PSR-4 compatible autoloading <../concepts/autoloader>`
1919
that CodeIgniter uses. While any code can use the PSR-4 autoloader and namespaces, the primary way to take full advantage of
2020
modules is to namespace your code and add it to **app/Config/Autoload.php**, in the ``psr4`` section.
2121

@@ -81,11 +81,11 @@ Many times, you will need to specify the full namespace to files you want to inc
8181
configured to make integrating modules into your applications simpler by automatically discovering many different
8282
file types, including:
8383

84-
- :doc:`Events </extending/events>`
85-
- :doc:`Filters </incoming/filters>`
86-
- :doc:`Registrars </general/configuration>`
87-
- :doc:`Route files </incoming/routing>`
88-
- :doc:`Services </concepts/services>`
84+
- :doc:`Events <../extending/events>`
85+
- :doc:`Filters <../incoming/filters>`
86+
- :doc:`Registrars <./configuration>`
87+
- :doc:`Route files <../incoming/routing>`
88+
- :doc:`Services <../concepts/services>`
8989

9090
This is configured in the file **app/Config/Modules.php**.
9191

@@ -127,7 +127,7 @@ guide, but is being reproduced here so that it's easier to grasp how all of the
127127
Routes
128128
======
129129

130-
By default, :doc:`routes </incoming/routing>` are automatically scanned for within modules. It can be turned off in
130+
By default, :doc:`routes <../incoming/routing>` are automatically scanned for within modules. It can be turned off in
131131
the **Modules** config file, described above.
132132

133133
.. note:: Since the files are being included into the current scope, the ``$routes`` instance is already defined for you.
@@ -139,7 +139,7 @@ In that case, see :ref:`routing-priority`.
139139
Filters
140140
=======
141141

142-
By default, :doc:`filters </incoming/filters>` are automatically scanned for within modules.
142+
By default, :doc:`filters <../incoming/filters>` are automatically scanned for within modules.
143143
It can be turned off in the **Modules** config file, described above.
144144

145145
.. note:: Since the files are being included into the current scope, the ``$filters`` instance is already defined for you.

0 commit comments

Comments
 (0)