You are here

function scald_atom_uri in Scald: Media Management made easy 7

Scald Atom entity uri callback.

1 string reference to 'scald_atom_uri'
scald_entity_info in ./scald.module
Implements hook_entity_info().

File

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

Code

function scald_atom_uri($atom) {
  return array(
    'path' => 'atom/' . $atom->sid,
  );
}