dbe8781cea25c5df6a1971ef53f8ff36585e99e5
[yaffs-website] / taxonomy_crud / taxonomy_crud.module
1 <?php
2
3 /**
4  * @file
5  * Provides hook implementations for testing purposes.
6  */
7
8 use Drupal\taxonomy\VocabularyInterface;
9
10 /**
11  * Implements hook_ENTITY_TYPE_presave() for taxonomy_vocabulary entities.
12  */
13 function taxonomy_crud_taxonomy_vocabulary_presave(VocabularyInterface $vocabulary) {
14   $vocabulary->setThirdPartySetting('taxonomy_crud', 'foo', 'bar');
15 }