Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TASK: Fix fusion docs a little #4867

Merged
merged 3 commits into from
Feb 5, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
prototype(Neos.Fusion:Matcher) {
@class = 'Neos\\Fusion\\FusionObjects\\MatcherImplementation'
condition = false
type = null
renderer = null
renderPath = null
type = null
element {
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
prototype(Neos.Fusion:Renderer) {
@class = 'Neos\\Fusion\\FusionObjects\\RendererImplementation'
type = null
renderPath = null
renderer = null
renderPath = null
type = null
element {
}
}
1 change: 1 addition & 0 deletions Neos.Neos/Classes/Fusion/Helper/BackendHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class BackendHelper implements ProtectedContextAwareInterface
*
* Translation.id("mh").locale(Neos.Backend.interfaceLanguage()).translate()
*
* @return string
mhsdesign marked this conversation as resolved.
Show resolved Hide resolved
*/
public function interfaceLanguage(): string
{
Expand Down
4 changes: 2 additions & 2 deletions Neos.Neos/Documentation/References/NeosFusionReference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -308,9 +308,9 @@ Example::

# the initial value is not changed, so you can define the Debug prototype anywhere in your Fusion code

.. _Neos_Fusion__DebugConsole:
.. _Neos_Fusion__Debug_Console:

Neos.Fusion:DebugConsole
Neos.Fusion:Debug.Console
-----------------

Wraps the given value with a script tag to print it to the browser console.
Expand Down