Skip to content
Open
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
20 changes: 20 additions & 0 deletions Documentation/Exceptions/1480765571.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,23 @@ but forget the prefix `FILE:`:
'FILE:EXT:my_extension/Configuration/FlexForms/MyFlexForm.xml',
'myextension_textpic'
);


Not matching filename of FLexform file
=======================================

This exception is thrown if the configured filename does not exist with the same name on the file system.
In the following example you must make sure the filename is exactly 'flexform_ds_plugin.xml'.

.. code-block:: php
:caption: EXT:my_extension/Configuration/TCA/Overrides/tt_content.php
:linenos:
:emphasize-lines: 3, 4

$extensionKey = 'my_extension';
ExtensionManagementUtility::addPiFlexFormValue(
'*',
'FILE:EXT:' . $extensionKey . '/Configuration/FlexForms/flexform_ds_plugin.xml',
$pluginSignature,
);