Facing the same issue when I am trying to save a node when I use am using this module - Domain Unique Path Alias → .
This MR fixes the error since Domain Unique Path Alias is implementing the AliasManagerInterface
I have merged this to 2.0.x dev branch
Hi @dnyanbaramade,
I have created an MR for this feature request: Feature #3481089
Could you please check this? Thanks.
Hi,
Thanks for your request.
I will add two date pickers for start date and end date and you will be able to filter by the date created.
Hey Vishal,
Thank you for reaching out. I understand this module is too small for you to review.
Unfortunately, I do not have any other bigger module that I can provide at the moment.
chiragp185 → created an issue.
Yes @tgauges,
I have tested your MR for this scenario and it looks good. I am now able to see all the references.
Thank you!
chiragp185 → created an issue.
Yeah sure! No worries
This can be helpful if we want to tag existing content to domains by changing the field_domain_source value using actions.
chiragp185 → created an issue.
Thank you all for your contribution!
This works amazingly well, thanks!
But when I was trying install this in an environment by importing config and there was no domain source assigned for any node, I used to get an error saying the function getDomainIdByRequest
is returning NULL (when an empty string is expected).
So, I modified that function slightly to fix this:
public function getDomainIdByRequest(?Request $request = NULL): string {
$request ??= $this->requestStack->getCurrentRequest();
$domainId = $request?->request->get('field_domain_source')
?? $this->domainNegotiator->getActiveDomain()?->id();
return $domainId !== null ? $domainId : '';
}
I hope this is fine!
Hi,
Thanks for your contribution @radheymkumar. I have tested it from my side.