Account created on 15 September 2009, over 14 years ago
#

Merge Requests

More

Recent comments

🇨🇭Switzerland Lukas von Blarer

Ok, that makes sense. No, I have no idea how to approach this.

Do you know a workaround for the issue I described though?

🇨🇭Switzerland Lukas von Blarer

Ok, this works as designed. This is the solution to this problem: 🐛 Views - Anonymous User Fixed

I was able to make the code a bit more generic:

/**
 * Implements hook_ENTITY_TYPE_access().
 */
function HOOK_view_access(View $view, $operation, $account) {
  $route_name = \Drupal::routeMatch()->getRouteName();
  if ($operation === 'view' && str_starts_with($route_name, 'graphql.query')) {
    return AccessResult::allowedIf($view->getExecutable()->access('default', $account));
  }
  return AccessResult::neutral();
}

Maybe that should be documented in the docs here? https://graphql-core-schema.netlify.app/schema-extensions/views.html That's at least where I was looking for why this isn't working.

🇨🇭Switzerland Lukas von Blarer

I'm having this issue as well. @Siegrist have you found a solution to this?

🇨🇭Switzerland Lukas von Blarer

I think this doesn't solve the issue entirely. If I understand your approach correctly, this solves the incorrect order for non-company addresses. But the issue where the order is mixed up compared to the user input persists for company addresses. Is there a way to solve that too?

🇨🇭Switzerland Lukas von Blarer

Oh, I just realized that using prefixes is the way the blacklist of purge_queuer_coretags works already. I don't think that that is optimal, since that gives us less flexibility, but I guess that's is another issue. Please ignore the patch in #13.

🇨🇭Switzerland Lukas von Blarer

This one only checks for exact matches. But I didn't fix anything else. So just ignore this patch in case you don't need that.

🇨🇭Switzerland Lukas von Blarer

Attached you can find a re-roll.

🇨🇭Switzerland Lukas von Blarer

In my case I need exact matches. I want to blacklist node_list, but that would also match node_list:article, which is not what I want.

🇨🇭Switzerland Lukas von Blarer

Right now I can't do a full review of the MR. Is there a way to get a diff of my module? That way I could reply to changes.

🇨🇭Switzerland Lukas von Blarer

Hi there! Thank you for reaching out to me!

All fine for me that you ported my code here. Please make sure that I receive commit authorship for it. And I'd like to declare the sponsorship for it on the project page.

🇨🇭Switzerland Lukas von Blarer

The current MR worked perfectly for a field formatter in a view. Thank you!

🇨🇭Switzerland Lukas von Blarer

Sorry, probably that needs a better review ;)

🇨🇭Switzerland Lukas von Blarer

This works like a charm! Thank you!

I think that for the specific use case of having an array with values this is the simpler and better solution than the approach of Add wrapper process plugin to wrap/unwrap values in arrays Needs review .

🇨🇭Switzerland Lukas von Blarer

Sorry, I forgot to add the new files.

🇨🇭Switzerland Lukas von Blarer

I fixed an issue where the duration is wrong in case the entries don't lass full hours, but fractions such as 1 hour and 30 minutes.

🇨🇭Switzerland Lukas von Blarer

I just had another failing webhook for a different order with the same error.

I don't allow users to set a timezone for their account. Insystem.date the timezone.user.configurable is set to false.

I'm having trouble finding out which order the failing webhook belongs to in the wallee backend. Because of that I can't provide more information about the failing order. Do you know how to associate a webhook with a payment transaction in wallee?

🇨🇭Switzerland Lukas von Blarer

I'm currently testing this patch. One thing that would be really nice is handling of overlapping items in the calendar. Currently they simply sit on top of each other and can completely cover each other.

🇨🇭Switzerland Lukas von Blarer

This doens't work for me yet. Exception days still have no effect on the 'Current day' formatter.

🇨🇭Switzerland Lukas von Blarer

On current dev exception days are completely broken. They basically have no effect on the 'Next day' formatter.

🇨🇭Switzerland Lukas von Blarer

On current dev at least exception days are completely broken. They basically have no effect on the 'Current day' formatter.

🇨🇭Switzerland Lukas von Blarer

Ok there is another issue with a patch: Media items translate items in modal Postponed Marking this one as a duplicate.

🇨🇭Switzerland Lukas von Blarer

I decided to create a new branch and MR based on the existing MR. I didn't make any changes.

🇨🇭Switzerland Lukas von Blarer

Lukas von Blarer made their first commit to this issue’s fork.

🇨🇭Switzerland Lukas von Blarer

I'm facing this issue as well. And I can reproduce this consistently.

Here is one finding: This issue only appears if the promotion affecting the product price is set to Only show the discount on the order total summary. Setting it to Include the discount in the displayed amount fixes the issue for me. But since I want the first of the two settings, this is not a viable workaround for me.

🇨🇭Switzerland Lukas von Blarer

I needed that for AVIF to work with imagemagick, but probably that is needed for GD as well: 📌 ExtensionMimeTypeGuesser doesn't support .avif Active

🇨🇭Switzerland Lukas von Blarer

This stopped working in a recent update I installed.

What is missing to get this committed?

🇨🇭Switzerland Lukas von Blarer

There is already an issue regarding D10 compatibility: 📌 Automated Drupal 10 compatibility fixes Needs review

🇨🇭Switzerland Lukas von Blarer

Could we get a release with this? The module is basically unusable with Drupal 10 without this fix.

🇨🇭Switzerland Lukas von Blarer

I improved the approach in #60 a bit:

function MODULE_update_9501() {

  $fields = [
    [
      'entity_type' => 'node',
      'bundle' => 'bundle_name',
      'field_name' => 'field_name',
    ],
  ];

  foreach($fields as $field){

    /** @var \Drupal\Core\KeyValueStore\KeyValueFactoryInterface $key_value_factory */
    $key_value_factory = \Drupal::service('keyvalue');
    $field_map_kv_store = $key_value_factory->get('entity.definitions.bundle_field_map');
    $map = $field_map_kv_store->get($field['entity_type']);

    // Remove the field_fpimage field from the bundle gallery_assist for the page bundle.
    unset($map[$field['field_name']]['bundles'][$field['bundle']]);

    $field_map_kv_store->set($field['entity_type'], $map);
  }
}
🇨🇭Switzerland Lukas von Blarer

Just ran into this issue once again. It would be great to fix this, since it can be pretty annoying such as breaking CI pipelines when installing modules.

Could we move this issue forward? I guess the comments in #25 are still valid?

🇨🇭Switzerland Lukas von Blarer

Attached is a first patch to make the sandbox https://www.drupal.org/sandbox/tstoeckler/2962081 Drupal 10 compatible created using rector.

🇨🇭Switzerland Lukas von Blarer

The MR is using jQuery.once resulting in errors like this:

Uncaught TypeError: $(...).find(...).once is not a function

🇨🇭Switzerland Lukas von Blarer

Or just add me to the maintainers so I can do it on my own. I'm gonna work on D10 compatibility now as well.

🇨🇭Switzerland Lukas von Blarer

Would you mind committing this patch, please? I've been using it since more than two years now.

🇨🇭Switzerland Lukas von Blarer

The patch in #3 works for me. The indentation inside the new if statement could be improved though.

🇨🇭Switzerland Lukas von Blarer

Ok, this is also broken with symfony_mailer.

🇨🇭Switzerland Lukas von Blarer

Lukas von Blarer made their first commit to this issue’s fork.

🇨🇭Switzerland Lukas von Blarer

Since EOL of Drupal 9 is coming closer: Could we please get this committed?

🇨🇭Switzerland Lukas von Blarer

Since EOL of Drupal 9 is coming closer: Could we please get this committed?

🇨🇭Switzerland Lukas von Blarer

Since EOL of Drupal 9 is coming closer: Could we please get this committed?

🇨🇭Switzerland Lukas von Blarer

Since EOL of Drupal 9 is coming closer: Could we please get this committed?

Production build 0.67.2 2024