You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feature EasyCorp#478 Added a new "raw" field type to show unescaped values (javiereguiluz)
This PR was merged into the master branch.
Discussion
----------
Added a new "raw" field type to show unescaped values
This fixesEasyCorp#431
Commits
-------
121bf84 Added a new "raw" field type to show unescaped values
Copy file name to clipboardExpand all lines: DependencyInjection/Configuration.php
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -291,6 +291,7 @@ private function addDesignSection(ArrayNodeDefinition $rootNode)
291
291
->scalarNode('field_id')->info('Used to render the field called "id". This avoids formatting its value as any other regular number (with decimals and thousand separators) ')->end()
292
292
->scalarNode('field_image')->info('Used to render image field types (a special type that displays the image contents)')->end()
293
293
->scalarNode('field_integer')->info('Used to render integer field types')->end()
294
+
->scalarNode('field_raw')->info('Used to render unescaped values')->end()
294
295
->scalarNode('field_simple_array')->info('Used to render simple array field types')->end()
295
296
->scalarNode('field_smallint')->info('Used to render smallint field types')->end()
296
297
->scalarNode('field_string')->info('Used to render string field types')->end()
0 commit comments