-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PE-677 New page menu implementation with group_content_menu (#638)
* PE-662 Fix the performance issue on page menu * Add config changes * Update composer.lock * Update twigs and view config * Add migration Drush command * Configure permissions. Remove unused view. * Add the Manage Menu button * Automatically update aliases. Support 7 level menu * Update composer.lock after merging master * Add custom entity reference selection to filter by the group ID in the group menu path * Add validation to prevent duplicated entries in Page Menu * Add "/edit" to Page Menu breadcrumb link * Remove "Menu" from Page and Resource forms * Use regex to match Page Menu link * Display page menu link description when hovering * Re-generate hash after merging with master * Hide the Menu Settings block in node form * FIx test and revert DBLog settings * Revert the update in util.js * Validate links entered as strings * Fix a bug in validating URI
- Loading branch information
Showing
33 changed files
with
1,619 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/group_content_menu.module b/group_content_menu.module | ||
index 79b72e7..a9cb17f 100644 | ||
--- a/group_content_menu.module | ||
+++ b/group_content_menu.module | ||
@@ -129,8 +129,8 @@ function group_content_menu_module_implements_alter(&$implementations, $hook) { | ||
* Implements hook_form_BASE_FORM_ID_alter(). | ||
*/ | ||
function group_content_menu_form_node_form_alter(&$form, FormStateInterface $form_state) { | ||
- \Drupal::classResolver(NodeFormAlter::class) | ||
- ->alter($form, $form_state); | ||
+ // \Drupal::classResolver(NodeFormAlter::class) | ||
+ // ->alter($form, $form_state); | ||
} | ||
|
||
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.