🇫🇷France @GuillaumePacilly

Account created on 4 July 2022, almost 3 years ago
#

Merge Requests

More

Recent comments

🇫🇷France GuillaumePacilly

Duplicate of https://www.drupal.org/project/field_group/issues/3491233 🐛 Drupal 10.4 RC1 error with field_ui.js Active .
Fixed on 4.x

🇫🇷France GuillaumePacilly

Updated patch for 5.1 with additional clean up.

I know this was long merged, but we are still using 5.1 version for now to avoid migration to bootstrap 5.

🇫🇷France GuillaumePacilly

Thanks! we checked again and the error is gone, probably due to our own environment. Closing the issue

🇫🇷France GuillaumePacilly

Thanks for the update!

I agree with your approach.
But the single return URL also makes it difficult to properly catch failed or cancelled payments.
I would like to add an Handler to at least catch cancellation from the user and redirect him properly.

But I would prefer creating a separate issue and MR for this, based on this one.
Do you think this can be merged soon? Or should we work directly on this MR?

🇫🇷France GuillaumePacilly

Issue was unrelated, changes are not necessary

🇫🇷France GuillaumePacilly

I am using version 1.0.0-beta3, but the issue is on all version, including 2.x

🇫🇷France GuillaumePacilly

guillaumepacilly made their first commit to this issue’s fork.

🇫🇷France GuillaumePacilly

Hi @beunerd

I ran into the same issue. I checked the core issue you mentioned

While it indeed looks like a core issue, I feel unconfortable to patch core this way, as it could have an impact on many other things.

Other modules had a similar issues and suggested that each module should be responsible to deliver properly formatted value to the WidgetBase, see https://www.drupal.org/project/eca/issues/3457773#comment-15699522 🐛 An error occurred while trying to build an inline entity from submitted form values Fixed

I have create a MR with this approach, what do you think?

🇫🇷France GuillaumePacilly

@tcrawford I have created the MR with your suggested changes and added an api.php file to provide some example.

I added an index variable to the hooks to facilitate the order_items array manipulation, let me know if you have a better idea.

🇫🇷France GuillaumePacilly

guillaumepacilly changed the visibility of the branch 3476192-fix-must-be to hidden.

🇫🇷France GuillaumePacilly

@DiDebru thanks for your update, worked fine for me! I added your changes to the MR of this issue, and added another hook to alter payment page initialization data as I need it on my projects.

🇫🇷France GuillaumePacilly

guillaumepacilly changed the visibility of the branch 3425346-views-caching-provide to hidden.

🇫🇷France GuillaumePacilly

I had the same need and solved it by using custom tokens. Then you can apply conditions inside your hook_tokens().

/**
 * Implements hook_token_info().
 */
function mymodule_token_info() : array {
  $info = [];

  $info['types']['my_custom_tokens'] = [
    'name' => t('Custom Tokens'),
    'description' => t('Tokens available for specific use on this website'),
  ];

  $info['tokens']['my_custom_tokens']['custom_token'] = [
    'name' => 'Custom token',
    'description' => t('Custom token with conditions'),
  ];

  return $info;
}

/**
 * Implements hook_tokens().
 */
function mymodule_tokens($type, $tokens, array $data, array $options, BubbleableMetadata $bubbleable_metadata) : array {
  $replacements = [];

  if ($type == 'my_custom_tokens') {
    foreach ($tokens as $name => $original) {
      switch ($name) {
        case 'custom_token':
            $node = $data['node'];
            // Add your logic here.

            $replacements[$original] = $title;
          }

          break;

        default:
          break;
      }
    }
  }

  return $replacements;
}

Then just use your custom token in the auto_entitylabel configuration

🇫🇷France GuillaumePacilly

@Drupalengue I added a MR with a possible approach. It gives the opportunity to activate or not the popup features for each ief widget.

🇫🇷France GuillaumePacilly

GuillaumePacilly made their first commit to this issue’s fork.

🇫🇷France GuillaumePacilly

Previous patch missed service argument for the PublicationDateSubscriber

🇫🇷France GuillaumePacilly

For those still struggling with this:

The issue is raised by the method \Drupal\Core\Entity\EntityDisplayRepository::getAllDisplayModesByEntityType on line 115:
[$display_mode_entity_type, $display_mode_name] = explode('.', $display_mode->id(), 2);

PHP8 will throws a Notice: Undefined offset 1 if explode('.', $display_mode->id(), 2) returns an array with only on argument.
This will be the case if you have a display mode like this in your config: core.%display_mode_entity_type%.%node_type%. It should be core.%display_type%.%display_mode_entity_type%.%display_mode_name%

In my case I had an obsolete config like core.%display_mode_entity_type%.%node_type%. Removing it with drush solved the issue
drush config:delete core.%display_mode_entity_type%.%node_type% && drush cex -y

🇫🇷France GuillaumePacilly

Hey, thanks a lot for the patch.

I have a similar issue when the user set a "publish on" date in the past from the node add form. In that case another scheduler event is triggered (Prepublish).

I have updated the patch to handle this case as well.

🇫🇷France GuillaumePacilly

Hello,

First thanks for this patch, this features is really much appreciated.

I could be wrong, but I think the parameters order is inversed between outputfile and arguments in the viewsDataExport function. At least I add to inverse them for it to work proerly. Attached an updated patch with the right order.

🇫🇷France GuillaumePacilly

I refactore the Tree Service to avoid missing indexes in the translations array.

However, I realize this feature would need additional work (probably major refactoring) to fully support multingual domains:
Currently the pagetree is build upon menu entities iteration, each domain having one menu, each menu a language and each node in the menu having translations.

This lead to inconsistency if translations belongs to a separate domain. Additionaly, the menu links language depends on the language defined for the menu, not the current language displayed.

Production build 0.71.5 2024