From 55907ac30ec89a8164961a491c121d8d5802d23c Mon Sep 17 00:00:00 2001 From: Fran Garcia-Linares <14157-fjgarlin@users.noreply.drupalcode.org> Date: Wed, 16 Oct 2024 15:26:07 +0000 Subject: [PATCH] Issue #3469552 by fjgarlin, chrisfromredfin, rkoller, prashant.c, lostcarpark, phenaproxima: Rename the drupal.org (json:api) source type --- src/Form/SettingsForm.php | 11 +++++++++-- src/Plugin/ProjectBrowserSource/DrupalCore.php | 2 +- .../ProjectBrowserSource/DrupalDotOrgJsonApi.php | 4 ++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/Form/SettingsForm.php b/src/Form/SettingsForm.php index b4393728e..d2f8023b3 100644 --- a/src/Form/SettingsForm.php +++ b/src/Form/SettingsForm.php @@ -76,6 +76,7 @@ class SettingsForm extends ConfigFormBase { protected function getTableHeader() { return [ $this->t('Source'), + $this->t('Description'), $this->t('Status'), $this->t('Weight'), ]; @@ -148,7 +149,7 @@ class SettingsForm extends ConfigFormBase { $table['status-' . $status]['title'] = [ '#plain_text' => $title, '#wrapper_attributes' => [ - 'colspan' => 3, + 'colspan' => 4, ], ]; @@ -160,6 +161,7 @@ class SettingsForm extends ConfigFormBase { } $label = (string) $plugin_definition['label']; + $description = (string) $plugin_definition['description']; $plugin_key_exists = array_search($plugin_name, $enabled_sources); $table[$plugin_name] = [ '#attributes' => [ @@ -174,7 +176,12 @@ class SettingsForm extends ConfigFormBase { 'id' => 'source--' . $plugin_name, ], ]; - + $table[$plugin_name]['description'] = [ + '#plain_text' => $description, + '#attributes' => [ + 'class' => ['source-description', 'source-description-' . $status], + ], + ]; $table[$plugin_name]['status'] = [ '#type' => 'select', '#default_value' => $status, diff --git a/src/Plugin/ProjectBrowserSource/DrupalCore.php b/src/Plugin/ProjectBrowserSource/DrupalCore.php index ff64356d2..3767a6664 100644 --- a/src/Plugin/ProjectBrowserSource/DrupalCore.php +++ b/src/Plugin/ProjectBrowserSource/DrupalCore.php @@ -18,7 +18,7 @@ use Symfony\Component\HttpFoundation\RequestStack; * * @ProjectBrowserSource( * id = "drupal_core", - * label = @Translation("Drupal core"), + * label = @Translation("Core Modules"), * description = @Translation("Gets core projects and filters information"), * ) */ diff --git a/src/Plugin/ProjectBrowserSource/DrupalDotOrgJsonApi.php b/src/Plugin/ProjectBrowserSource/DrupalDotOrgJsonApi.php index 3df3025df..7b2d60648 100644 --- a/src/Plugin/ProjectBrowserSource/DrupalDotOrgJsonApi.php +++ b/src/Plugin/ProjectBrowserSource/DrupalDotOrgJsonApi.php @@ -26,8 +26,8 @@ use Symfony\Component\HttpFoundation\Response; * * @ProjectBrowserSource( * id = "drupalorg_jsonapi", - * label = @Translation("Drupal.org (JSON:API)"), - * description = @Translation("Gets project and related information from JSON:API endpoint"), + * label = @Translation("Contrib Modules"), + * description = @Translation("Modules on Drupal.org queried via the JSON:API endpoint"), * ) */ class DrupalDotOrgJsonApi extends ProjectBrowserSourceBase { -- GitLab