Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / tour_tips_info_alter.twig
1 /**
2  * Implements hook_tour_tips_info_alter().
3  */
4 function {{ machine_name }}_tour_tips_info_alter(&$info) {
5   // Swap out the class used for this tip plugin.
6   if (isset($info['text'])) {
7     $info['class'] = 'Drupal\mymodule\Plugin\tour\tip\MyCustomTipPlugin';
8   }
9 }