summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/taxonomy
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/taxonomy')
-rw-r--r--core/modules/taxonomy/src/Hook/TaxonomyHooks.php5
-rw-r--r--core/modules/taxonomy/src/Plugin/views/field/TaxonomyIndexTid.php8
-rw-r--r--core/modules/taxonomy/taxonomy.module7
-rw-r--r--core/modules/taxonomy/tests/src/Functional/VocabularyUiTest.php7
-rw-r--r--core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTest.php1
-rw-r--r--core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTranslationTest.php1
-rw-r--r--core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php1
7 files changed, 22 insertions, 8 deletions
diff --git a/core/modules/taxonomy/src/Hook/TaxonomyHooks.php b/core/modules/taxonomy/src/Hook/TaxonomyHooks.php
index 4cc0a6f6eb61..82a88ce8a198 100644
--- a/core/modules/taxonomy/src/Hook/TaxonomyHooks.php
+++ b/core/modules/taxonomy/src/Hook/TaxonomyHooks.php
@@ -180,4 +180,9 @@ class TaxonomyHooks {
}
}
+ // phpcs:ignore Drupal.Commenting.InlineComment.DocBlock
+ /**
+ * @} End of "defgroup taxonomy_index".
+ */
+
}
diff --git a/core/modules/taxonomy/src/Plugin/views/field/TaxonomyIndexTid.php b/core/modules/taxonomy/src/Plugin/views/field/TaxonomyIndexTid.php
index bf83b7067c52..b41086d059e2 100644
--- a/core/modules/taxonomy/src/Plugin/views/field/TaxonomyIndexTid.php
+++ b/core/modules/taxonomy/src/Plugin/views/field/TaxonomyIndexTid.php
@@ -174,10 +174,10 @@ class TaxonomyIndexTid extends PrerenderList {
* {@inheritdoc}
*/
protected function documentSelfTokens(&$tokens) {
- $tokens['{{ ' . $this->options['id'] . '__tid' . ' }}'] = $this->t('The taxonomy term ID for the term.');
- $tokens['{{ ' . $this->options['id'] . '__name' . ' }}'] = $this->t('The taxonomy term name for the term.');
- $tokens['{{ ' . $this->options['id'] . '__vocabulary_vid' . ' }}'] = $this->t('The machine name for the vocabulary the term belongs to.');
- $tokens['{{ ' . $this->options['id'] . '__vocabulary' . ' }}'] = $this->t('The name for the vocabulary the term belongs to.');
+ $tokens['{{ ' . $this->options['id'] . '__tid }}'] = $this->t('The taxonomy term ID for the term.');
+ $tokens['{{ ' . $this->options['id'] . '__name }}'] = $this->t('The taxonomy term name for the term.');
+ $tokens['{{ ' . $this->options['id'] . '__vocabulary_vid }}'] = $this->t('The machine name for the vocabulary the term belongs to.');
+ $tokens['{{ ' . $this->options['id'] . '__vocabulary }}'] = $this->t('The name for the vocabulary the term belongs to.');
}
/**
diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module
index 04c00e36b6c2..28e54b11f71b 100644
--- a/core/modules/taxonomy/taxonomy.module
+++ b/core/modules/taxonomy/taxonomy.module
@@ -90,6 +90,11 @@ function taxonomy_term_is_page(Term $term) {
}
/**
+ * @addtogroup taxonomy_index
+ * @{
+ */
+
+/**
* Builds and inserts taxonomy index entries for a given node.
*
* The index lists all terms that are related to a given node entity, and is
@@ -152,5 +157,5 @@ function taxonomy_delete_node_index(EntityInterface $node): void {
}
/**
- * @} End of "defgroup taxonomy_index".
+ * @} End of "addtogroup taxonomy_index".
*/
diff --git a/core/modules/taxonomy/tests/src/Functional/VocabularyUiTest.php b/core/modules/taxonomy/tests/src/Functional/VocabularyUiTest.php
index 7747682a42ec..b751f6b52ba6 100644
--- a/core/modules/taxonomy/tests/src/Functional/VocabularyUiTest.php
+++ b/core/modules/taxonomy/tests/src/Functional/VocabularyUiTest.php
@@ -4,7 +4,7 @@ declare(strict_types=1);
namespace Drupal\Tests\taxonomy\Functional;
-use Drupal\Component\Render\FormattableMarkup;
+use Drupal\Component\Utility\Html;
use Drupal\Core\Url;
use Drupal\taxonomy\Entity\Vocabulary;
@@ -101,9 +101,10 @@ class VocabularyUiTest extends TaxonomyTestBase {
$link->click();
// Confirm deletion.
- $this->assertSession()->responseContains(new FormattableMarkup('Are you sure you want to delete the vocabulary %name?', ['%name' => $edit['name']]));
+ $name = Html::escape($edit['name']);
+ $this->assertSession()->responseContains("Are you sure you want to delete the vocabulary <em class=\"placeholder\">$name</em>?");
$this->submitForm([], 'Delete');
- $this->assertSession()->responseContains(new FormattableMarkup('Deleted vocabulary %name.', ['%name' => $edit['name']]));
+ $this->assertSession()->responseContains("Deleted vocabulary <em class=\"placeholder\">$name</em>.");
$this->container->get('entity_type.manager')->getStorage('taxonomy_vocabulary')->resetCache();
$this->assertNull(Vocabulary::load($edit['vid']), 'Vocabulary not found.');
}
diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTest.php
index 1d9654dd5050..511778daf200 100644
--- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTest.php
+++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTest.php
@@ -10,6 +10,7 @@ use Drupal\node\Entity\Node;
/**
* Upgrade taxonomy term node associations.
*
+ * @group #slow
* @group migrate_drupal_6
*/
class MigrateTermNodeTest extends MigrateDrupal6TestBase {
diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTranslationTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTranslationTest.php
index 8d9465f61a3f..7fcb764eac3e 100644
--- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTranslationTest.php
+++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTranslationTest.php
@@ -11,6 +11,7 @@ use Drupal\node\Entity\Node;
* Upgrade taxonomy term node associations.
*
* @group migrate_drupal_6
+ * @group #slow
*/
class MigrateTermNodeTranslationTest extends MigrateDrupal6TestBase {
diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php
index 1fb8b819fdc7..3499a404ac95 100644
--- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php
+++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php
@@ -12,6 +12,7 @@ use Drupal\taxonomy\TermInterface;
* Test migration of translated taxonomy terms.
*
* @group migrate_drupal_7
+ * @group #slow
*/
class MigrateTaxonomyTermTranslationTest extends MigrateDrupal7TestBase {