We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
I have made this structure with unit tests :
$builder = new FieldsBuilder('Banner'); $builder ->addGroup('group') ->addTab('tab') ->addAccordion('accordion') ->addWysiwyg('content') ->addAccordion('accordion_endpoint'); $builder ->modifyField('group->tab_tab->accordion_accordion', function ($builder) { $builder->addText('sub_title'); return $builder; });
As you can see, we cannot do :
$builder ->modifyField('group->tab->accordion', ...)
We need to suffix tabs with _tab and accordions with _accordion.
_tab
_accordion
Is this on purpose ? @stevep ? Otherwise, I can make a PR to fix that
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I have made this structure with unit tests :
As you can see, we cannot do :
We need to suffix tabs with
_tab
and accordions with_accordion
.Is this on purpose ? @stevep ? Otherwise, I can make a PR to fix that
The text was updated successfully, but these errors were encountered: