-
Notifications
You must be signed in to change notification settings - Fork 16
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
IBX-2667: Added Content Type Meta anchor menu #558
Conversation
ef63333
to
db532fb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see ContentTypeEditAnchorMenuBuilder
is made after #526 but this menu has different structure according to the mockups. It has to be fixed once the frontend part is done.
5b50365
to
220c41e
Compare
src/bundle/Resources/views/themes/admin/ui/menu/content_type_anchor_menu.html.twig
Outdated
Show resolved
Hide resolved
src/lib/Component/ContentType/ContentTypeEditMetaFieldsComponent.php
Outdated
Show resolved
Hide resolved
src/lib/Component/ContentType/ContentTypeEditMetaFieldsComponent.php
Outdated
Show resolved
Hide resolved
b02f117
to
dfa78e0
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like whether a Field Definition is meta or not should belong to Core API, not Admin UI. However probably coming a bit too late to the party, so here are the remarks for the current solution:
src/bundle/DependencyInjection/Configuration/Parser/AdminUiForms.php
Outdated
Show resolved
Hide resolved
src/bundle/DependencyInjection/Configuration/Parser/AdminUiForms.php
Outdated
Show resolved
Hide resolved
src/bundle/DependencyInjection/Configuration/Parser/AdminUiForms.php
Outdated
Show resolved
Hide resolved
src/bundle/DependencyInjection/Configuration/Parser/AdminUiForms.php
Outdated
Show resolved
Hide resolved
57d7090
to
0643008
Compare
…ms.php Co-authored-by: Andrew Longosz <[email protected]>
…ms.php Co-authored-by: Andrew Longosz <[email protected]>
…ms.php Co-authored-by: Andrew Longosz <[email protected]>
…ms.php Co-authored-by: Dawid Parafiński <[email protected]>
060a5bd
to
c1737ea
Compare
Kudos, SonarCloud Quality Gate passed!
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
QA Approved on 4.2.2-dev.
Tested with all editions.
Related to:
https://github.com/ibexa/seo/pull/5
https://github.com/ibexa/seo/pull/6
https://github.com/ibexa/seo/pull/11
This PR adds modifications to Field Types management in Content Type create / edit. Field Types which provides more complex functionality like SEO, Taxonomy, should be separated from Field definitions section. Field Types marked as meta Field Type will be presented in anchor menu as regular menu item. Configuration form is rendered below Field definitions section. Meta Field Types contains dynamically added
enabled
field to configure if Field Type will be used in Content Type or not. Enabling Field Type behave similar to dragging and dropping regular Field Type. Apart of the visual changes, rest of functionally is not changed.Below configurations allows to configure meta fieldtype for content type:
To use meta Field Types from anchor menu, meta field definitions must be added to
ContentTypeDraft
orContentTypeCreateStruct
before form will be rendered.ContentTypeController::addMetaFieldDefinitions
is responsible to do that. In create action new meta field definitions are created for all configured meta Field Types. In edit action new meta field definitions are created for all configured and not enabled meta Field Types. Field Definitions for enabled Field Types are taken from database.Before ContentType will be updated meta Field Definitions for all not enabled Field Types are removed.
Checklist:
$ composer fix-cs
)