Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / filter / tests / filter_test / filter_test.module
1 <?php
2
3 /**
4  * @file
5  * Test module for Filter module hooks and functions not used in core.
6  */
7
8 /**
9  * Implements hook_filter_format_insert().
10  */
11 function filter_test_filter_format_insert($format) {
12   \Drupal::messenger()->addStatus('hook_filter_format_insert invoked.');
13 }
14
15 /**
16  * Implements hook_filter_format_update().
17  */
18 function filter_test_filter_format_update($format) {
19   \Drupal::messenger()->addStatus('hook_filter_format_update invoked.');
20 }
21
22 /**
23  * Implements hook_filter_format_disable().
24  */
25 function filter_test_filter_format_disable($format) {
26   \Drupal::messenger()->addStatus('hook_filter_format_disable invoked.');
27 }