Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / path_delete.twig
1 /**
2  * Implements hook_path_delete().
3  */
4 function {{ machine_name }}_path_delete($path) {
5   db_delete('mytable')
6     ->condition('pid', $path['pid'])
7     ->execute();
8 }