Thanks! I remove domain.record. and reimport config. That's work
philalawst → created an issue.
Sorry, the plugin that I've deployed wasn't working
I push a new release 1.0.3
philalawst → created an issue.
@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);
}
philalawst → created an issue.
Finally, i use this code
$configFactory = \Drupal::configFactory();
$fieldConfigNames = $configFactory->listAll('field.field.event_type.classic_form');
$fieldsConfig = $configFactory->loadMultiple($fieldConfigNames);
philalawst → created an issue.
philalawst → created an issue.
thanks for your suggestions !!
I'll work with the first approach
Thanks
philalawst → created an issue.
Philalawst → created an issue.
Philalawst → created an issue.
thanks for your feedback !
I understand better
is it based on the Lucene's scoring algorithm ?
Philalawst → created an issue.
Philalawst → created an issue.
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
Philalawst → created an issue.