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
9 changes: 5 additions & 4 deletions user_guide_src/source/general/common_functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,12 @@ Service Accessors
a convenience method that can be used in Controllers,
libraries, and routed closures.

Currently, only one option is available for use within the `$options` array, `saveData` which specifies
that data will persistent between multiple calls to `view()` within the same request. By default, the
data for that view is forgotten after displaying that single view file.
Currently, only two options are available for use within the ``$options`` array:

The $option array is provided primarily to facilitate third-party integrations with
- ``saveData`` specifies that data will persistent between multiple calls to ``view()`` within the same request. If you do not want the data to be persisted, specify false.
- ``debug`` can be set to false to disable the addition of debug code for :ref:`Debug Toolbar <the-debug-toolbar>`.

The ``$option`` array is provided primarily to facilitate third-party integrations with
libraries like Twig.

Example::
Expand Down
2 changes: 2 additions & 0 deletions user_guide_src/source/testing/debugging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ This provides a backtrace to the current execution point, with Kint's own unique

For more information, see `Kint's page <https://kint-php.github.io/kint//>`_.

.. _the-debug-toolbar:

=================
The Debug Toolbar
=================
Expand Down