Sorry, you need to enable JavaScript to visit this website.

problème module group

Soumis par dpalicepeio le

 Drupal\group\Entity\Storage\GroupContentStorage::loadByEntity(): Argument #1 ($entity) must be of type Drupal\Core\Entity\ContentEntityInterface, 

Le fichier à modifier est : 

D:\xampp\htdocs\drupal-9.2.7\modules\group\group.module

autours ligne 320

probleme module webformgroup

Soumis par dpalicepeio le

Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException: You have requested a non-existent service "user.private_tempstore"

 

Dans D:\xampp\htdocs\drupal-9.2.7\modules\group_webform\src\Controller\GroupWebformController.php

Remplacer l'import Drupal\user\PrivateTempStoreFactory par  Drupal\Core\TempStore\PrivateTempStoreFactory

et 'user.private_tempstore' par 'tempstore.private'

Problème modude Burndown

Soumis par dpalicepeio le

Message d'erreur

Error: max(): Argument #1 ($value) must contain at least one element in max() (line 55 of modules\contrib\burndown\src\Services\ProjectCloudService.php).

Résolu : 

AVANT

    ksort($values);

    // Get min/max number of tasks.
    $max_qty = max(array_values($values));
    $min_qty = min(array_values($values));