You are here

function hook_scald_atom_delete in Scald: Media Management made easy 7

Act on an atom being deleted.

This hook is invoked from scald_atom_delete_multiple() after the atom is unregistered, before hook_entity_delete() is called and before the atom is removed from scald_atoms table in the database.

@codingStandardsIgnoreStart

Parameters

ScaldAtom $atom: A Scald Atom.

1 function implements hook_scald_atom_delete()

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

mee_scald_atom_delete in modules/fields/mee/mee.module
Implements hook_scald_atom_delete().
1 invocation of hook_scald_atom_delete()
scald_atom_delete_multiple in ./scald.module
Delete multiple Scald atoms.

File

./scald.api.php, line 503
Hooks related to Scald atoms and providers.

Code

function hook_scald_atom_delete($atom) {

  // @codingStandardsIgnoreEnd
}