Account created on 15 March 2010, about 15 years ago
#

Recent comments

🇧🇪Belgium philalawst

Sorry, the plugin that I've deployed wasn't working

I push a new release 1.0.3

🇧🇪Belgium philalawst

@renatog thanks for your answer.

Yes I'm using the module "Domain" (one drupal for many sites)
and with the suggest change, i could use this module

Or maybe to handle domain in the field "Page"
https://mydomain.com/
https://mydomain.com/event
https://mydomain.com/event/*

in verifyModalShouldAppearOnThisPath.

  public function verifyModalShouldAppearOnThisPath($path, $currentPath) {
    $host = \Drupal::request()->getSchemeAndHttpHost();
    $path = preg_quote($path, '/');
    $path = str_replace('\*', '.*', $path);
    return preg_match('/^' . preg_quote($path, '/') . '$/i', $currentPath) || preg_match('/^' . preg_quote($path, '/') . '$/i', $host.$currentPath);
  }
🇧🇪Belgium philalawst

Finally, i use this code

$configFactory = \Drupal::configFactory();
$fieldConfigNames = $configFactory->listAll('field.field.event_type.classic_form');
$fieldsConfig = $configFactory->loadMultiple($fieldConfigNames);
🇧🇪Belgium philalawst

thanks for your suggestions !!

I'll work with the first approach

Thanks

🇧🇪Belgium philalawst

thanks for your feedback !

I understand better

🇧🇪Belgium philalawst

Ok i found with
https://www.drupal.org/project/group/issues/3335895 💬 All groups not visible to administrators on /admin/group Closed: duplicate
https://www.drupal.org/project/group/issues/3315050#comment-14778436 💬 Sitewide Administrator permissions not working Closed: works as designed

Production build 0.71.5 2024