Updated the working branch to set a destination after the user is authenticated.
Actually got to test this and it ends in an infinite redirect because the openid_connect paths are not excluded. The excluded_path explode also does not work correctly.
Update patch to excluding cli requests.
Updating the form to add a composer.json file.
Created fork with a first stab at upgrading this project so it works with Drupal 10. I also included a patch with the changes.
zipymonkey β made their first commit to this issueβs fork.
The following patch seems to fix the issue for me.
zipymonkey β created an issue.
This patch is working for me locally. Moving this back to Needs Review for others to review.
The branch is out of date. I did a quick rebase locally and generated a patch (sorry for not updating the branch). I removed $this->tree = $tree;
since it did not appear to be used anywhere.
I created a fork, applied the patch and updated the Deriver to fix the PHP 8.3 deprecation warning: https://git.drupalcode.org/issue/pathauto-3079275/-/commit/b93e5527a4b88...
I had to apply a couple other patches to apply this to 8.x-1.12 and I am setting a deprecation warning when on PHP8.3.
Deprecated function: Creation of dynamic property Drupal\pathauto\Plugin\migrate\PathautoPatternDeriver::$basePluginId is deprecated in Drupal\pathauto\Plugin\migrate\PathautoPatternDeriver->__construct() (line 41 of modules/contrib/pathauto/src/Plugin/migrate/PathautoPatternDeriver.php).
It looks like this requires defining the basePluginId variable.
I created a fork so that the new block create permissions are respected by layout builder browser
I created a fork which adds a check to ensure that the user can create the inline_block.
zipymonkey β created an issue.
The patch only supports using the transitions label on the Edit page. This does not work on the Layout form. The Layout builder change is set in content_moderation_entity_form_display_alter()
hook but that knows nothing about the setting. The patch will need to be updated to handle the form alter. The following changes the transition but that needs to be pulled from the moderation_labels need to be pulled from the form settings.
if ($context['form_mode'] === 'layout_builder') {
$form_display->setComponent('moderation_state', [
'type' => 'moderation_state_default',
'weight' => -900,
'settings' => [
'moderation_labels' => 'transition', // Get the field setting from form display?
],
]);
}
Alternatively, this could be a setting on each workflow instead of a settings on the field Widget.
Added a patch that passes a boolean through to the BehaviorInvoker::getBehaviorPlugin()
method so the message is only displayed `onResponse` and never `onRequest`.
I am not sure that this the best way of handling it but it does appear to work when testing this locally.
zipymonkey β created an issue.
zipymonkey β created an issue.
I updated the Forked branch to pull in changes from the 2.x branch. I also fixed a issue where multiple paragraphs were getting added to the block quote each time it was edited.
I have uploaded a patch for this as well.
Uploading the patch from 3305288.
zipymonkey β created an issue.
@heddn The patch for https://www.drupal.org/project/group_content_menu/issues/3305288#comment... π Automated Drupal 10 compatibility fixes Closed: won't fix is for 3.0.x. That removes a few references to GroupContent that are still in the module. I will create a separate ticket.
Patch does not for 3.0.x branch so I rerolled it and add node context to the block instead of loading the node from the request.
There are couple of references to the GroupContent in the 3.0.x branch. The attached patch removed the references or replaces them with GroupRelationship.
I tried to combine the changes from #27 and #17, so GA4 recommended ecommerce events are used and this tracks quantity updates in the cart. Hopefully, I didn't miss anything but this appears to be working using the GA4 debugging tools.
Looks like there is a mask in the tabledrag styles that is on top of the background image. Removing the mask appears to make this work.