Skip to content

Commit a974977

Browse files
committed
Adds links to service pages
1 parent 3cfc111 commit a974977

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

guide/index.rst

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,9 @@ Anti-CSRF Service
331331
Gets an instance of
332332
`Framework\HTTP\AntiCSRF <https://docs.aplus-framework.com/classes/Framework-HTTP-AntiCSRF.html>`_.
333333

334+
More details about Anti-CSRF can be found
335+
`here <https://docs.aplus-framework.com/guides/libraries/helpers/index.html>`_.
336+
334337
.. code-block:: php
335338
336339
App::antiCsrf()
@@ -391,6 +394,9 @@ Autoloader Service
391394
Gets an instance of
392395
`Framework\Autoload\Autoloader <https://docs.aplus-framework.com/classes/Framework-Autoload-Autoloader.html>`_.
393396

397+
More details about Autoloader can be found
398+
`here <https://docs.aplus-framework.com/guides/libraries/autoload/index.html#autoloader>`_.
399+
394400
.. code-block:: php
395401
396402
App::autoloader()
@@ -438,6 +444,9 @@ Cache Service
438444
Gets an instance of
439445
`Framework\Cache\Cache <https://docs.aplus-framework.com/classes/Framework-Cache-Cache.html>`_.
440446

447+
More details about Cache can be found
448+
`here <https://docs.aplus-framework.com/guides/libraries/cache/index.html#cache>`_.
449+
441450
.. code-block:: php
442451
443452
App::cache()
@@ -504,6 +513,9 @@ Console Service
504513
Gets an instance of
505514
`Framework\CLI\Console <https://docs.aplus-framework.com/classes/Framework-CLI-Console.html>`_.
506515

516+
More details about Console can be found
517+
`here <https://docs.aplus-framework.com/guides/libraries/cli/index.html#cli>`_.
518+
507519
.. code-block:: php
508520
509521
App::console()
@@ -553,6 +565,9 @@ Database Service
553565
Gets an instance of
554566
`Framework\Database\Database <https://docs.aplus-framework.com/classes/Framework-Database-Database.html>`_.
555567

568+
More details about Database can be found
569+
`here <https://docs.aplus-framework.com/guides/libraries/database/index.html#database>`_.
570+
556571
.. code-block:: php
557572
558573
App::database()
@@ -592,6 +607,9 @@ Debugger Service
592607
Gets an instance of
593608
`Framework\Debug\Debugger <https://docs.aplus-framework.com/classes/Framework-Debug-Debugger.html>`_.
594609

610+
More details about Debugger can be found
611+
`here <https://docs.aplus-framework.com/guides/libraries/debug/index.html#debugger>`_.
612+
595613
.. code-block:: php
596614
597615
App::debugger()
@@ -630,6 +648,9 @@ Exception Handler Service
630648
Gets an instance of
631649
`Framework\Debug\ExceptionHandler <https://docs.aplus-framework.com/classes/Framework-Debug-ExceptionHandler.html>`_.
632650

651+
More details about Exception Handler can be found
652+
`here <https://docs.aplus-framework.com/guides/libraries/debug/index.html#exception-handler>`_.
653+
633654
.. code-block:: php
634655
635656
App::exceptionHandler()
@@ -731,6 +752,9 @@ Language Service
731752
Gets an instance of
732753
`Framework\Language\Language <https://docs.aplus-framework.com/classes/Framework-Language-Language.html>`_.
733754

755+
More details about Language can be found
756+
`here <https://docs.aplus-framework.com/guides/libraries/language/index.html#language>`_.
757+
734758
.. code-block:: php
735759
736760
App::language()
@@ -812,6 +836,9 @@ Locator Service
812836
Gets an instance of
813837
`Framework\Autoload\Locator <https://docs.aplus-framework.com/classes/Framework-Autoload-Locator.html>`_.
814838

839+
More details about Locator can be found
840+
`here <https://docs.aplus-framework.com/guides/libraries/autoload/index.html#locator>`_.
841+
815842
.. code-block:: php
816843
817844
App::locator()
@@ -840,6 +867,9 @@ Logger Service
840867
Gets an instance of
841868
`Framework\Log\Logger <https://docs.aplus-framework.com/classes/Framework-Log-Logger.html>`_.
842869

870+
More details about Logger can be found
871+
`here <https://docs.aplus-framework.com/guides/libraries/log/index.html#log>`_.
872+
843873
.. code-block:: php
844874
845875
App::logger()
@@ -891,6 +921,9 @@ Mailer Service
891921
Gets an instance of
892922
`Framework\Email\Mailer <https://docs.aplus-framework.com/classes/Framework-Email-Mailer.html>`_.
893923

924+
More details about Mailer can be found
925+
`here <https://docs.aplus-framework.com/guides/libraries/email/index.html#email>`_.
926+
894927
.. code-block:: php
895928
896929
App::mailer()
@@ -927,6 +960,9 @@ Migrator Service
927960
Gets an instance of
928961
`Framework\Database\Extra\Migrator <https://docs.aplus-framework.com/classes/Framework-Database-Extra-Migrator.html>`_.
929962

963+
More details about Migrator can be found
964+
`here <https://docs.aplus-framework.com/guides/libraries/database-extra/index.html#migrations>`_.
965+
930966
.. code-block:: php
931967
932968
App::migrator()
@@ -967,6 +1003,9 @@ Request Service
9671003
Gets an instance of
9681004
`Framework\HTTP\Request <https://docs.aplus-framework.com/classes/Framework-HTTP-Request.html>`_.
9691005

1006+
More details about Request can be found
1007+
`here <https://docs.aplus-framework.com/guides/libraries/http/index.html#request>`_.
1008+
9701009
.. code-block:: php
9711010
9721011
App::request()
@@ -1014,6 +1053,9 @@ Response Service
10141053
Gets an instance of
10151054
`Framework\HTTP\Response <https://docs.aplus-framework.com/classes/Framework-HTTP-Response.html>`_.
10161055

1056+
More details about Response can be found
1057+
`here <https://docs.aplus-framework.com/guides/libraries/http/index.html#response>`_.
1058+
10171059
.. code-block:: php
10181060
10191061
App::response()
@@ -1110,6 +1152,9 @@ Router Service
11101152
Gets an instance of
11111153
`Framework\Routing\Router <https://docs.aplus-framework.com/classes/Framework-Routing-Router.html>`_.
11121154

1155+
More details about Router can be found
1156+
`here <https://docs.aplus-framework.com/guides/libraries/routing/index.html#router>`_.
1157+
11131158
.. code-block:: php
11141159
11151160
App::router()
@@ -1180,6 +1225,9 @@ Session Service
11801225
Gets an instance of
11811226
`Framework\Session\Session <https://docs.aplus-framework.com/classes/Framework-Session-Session.html>`_.
11821227

1228+
More details about Session can be found
1229+
`here <https://docs.aplus-framework.com/guides/libraries/session/index.html#session>`_.
1230+
11831231
.. code-block:: php
11841232
11851233
App::session()
@@ -1238,6 +1286,9 @@ Validation Service
12381286
Gets an instance of
12391287
`Framework\Validation\Validation <https://docs.aplus-framework.com/classes/Framework-Validation-Validation.html>`_.
12401288

1289+
More details about Validation can be found
1290+
`here <https://docs.aplus-framework.com/guides/libraries/validation/index.html#validation>`_.
1291+
12411292
.. code-block:: php
12421293
12431294
App::validation()
@@ -1277,6 +1328,9 @@ View Service
12771328
Gets an instance of
12781329
`Framework\MVC\View <https://docs.aplus-framework.com/classes/Framework-MVC-View.html>`_.
12791330

1331+
More details about View can be found
1332+
`here <https://docs.aplus-framework.com/guides/libraries/mvc/index.html#views>`_.
1333+
12801334
.. code-block:: php
12811335
12821336
App::view()

0 commit comments

Comments
 (0)