You are here

function scald_atom_delete in Scald: Media Management made easy 7

Delete a Scald atom.

Parameters

int $sid: Scald atom ID.

1 call to scald_atom_delete()
scald_atom_delete_confirm_submit in includes/scald.pages.inc
Execute atom deletion.
1 string reference to 'scald_atom_delete'
scald_entity_info in ./scald.module
Implements hook_entity_info().

File

./scald.module, line 510
The Scald Core, which handles all Scald Registries and dispatch.

Code

function scald_atom_delete($sid) {
  scald_atom_delete_multiple(array(
    $sid,
  ));
}