Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / file_delete.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d7/hook/file_delete.twig b/vendor/chi-teck/drupal-code-generator/templates/d7/hook/file_delete.twig
new file mode 100644 (file)
index 0000000..76b5589
--- /dev/null
@@ -0,0 +1,7 @@
+/**
+ * Implements hook_file_delete().
+ */
+function {{ machine_name }}_file_delete($file) {
+  // Delete all information associated with the file.
+  db_delete('upload')->condition('fid', $file->fid)->execute();
+}