problème module private message (notifications)
Problème modude Burndown : Board Controller
La ligne 104
if (isset($user_id) && !array_key_exists($user_id, $users)) {
$user_data['active'] = in_array($user_id, $assigned_to) ? 'active' : '';
$users[$user_id] = $user_data;
Doit-être remplacée par
Problème module webformGroup d'attribution des droits
The website encountered an unexpected error. Please try again later.
Error: Call to undefined method Drupal\Core\Config\Entity\ConfigEntityType::getLowercaseLabel() in Drupal\group_webform\Plugin\GroupContentEnabler\GroupWebform->getPermissions() (line 48 of modules\group_webform\src\Plugin\GroupContentEnabler\GroupWebform.php).
Dans D:\xampp\htdocs\drupal-9.2.7\modules\group_webform\src\Plugin\GroupContentEnabler\GroupWebform.php
Remplacer la ligne 48
'%entity_type' => $this->getEntityType()->getLowercaseLabel(),
par
Problèmes warning module core BlockPluginTrait.php
- Warning: Trying to access array offset on value of type null in Drupal\Core\Block\BlockBase->baseConfigurationDefaults() (line 91 of core\lib\Drupal\Core\Block\BlockPluginTrait.php).
Pour traiter ce problème la ligne 91
'provider' => $this->pluginDefinition['provider']
doit être remplacée par
problème module group
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
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 notice Drupal Core/Block/BlockPluginTrait.php) :: Warning
Trying to access array offset on value of type null in Drupal\Core\Block\BlockBase->baseConfigurationDefaults() (line 90 of core/lib/Drupal/Core/Block/BlockPluginTrait.php).
Appliquer le patch ci-dessous
https://www.drupal.org/files/issues/2021-06-04/3192766-4.patch
Problème modude Burndown
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));