function hook_tour_insert

Respond to creation of a new tour.

Parameters

\Drupal\tour\Plugin\Core\Entity\Tour $entity: The tour object being inserted.

1 function implements hook_tour_insert()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

tour_tour_insert in drupal/core/modules/tour/tour.module
Implements hook_tour_insert().

File

drupal/core/modules/tour/tour.api.php, line 74
Describes API functions for tour module.

Code

function hook_tour_insert($entity) {
  drupal_container()
    ->get('plugin.manager.tour.tip')
    ->clearCachedDefinitions();
  cache('cache_tour')
    ->deleteTags(array(
    'tour_items',
  ));
}