You are here

function scald_is_fetched in Scald: Media Management made easy 6

Same name and namespace in other branches
  1. 7 scald.module \scald_is_fetched()

Determine if a Scald Atom is fetched

Parameters

$atom: The Scald Atom to test

Return value

TRUE/FALSE

1 call to scald_is_fetched()
scald_render in ./scald.module
Render a Scald Atom

File

./scald.module, line 1444

Code

function scald_is_fetched($atom = NULL) {
  return is_object($atom) && isset($atom->fetched) && $atom->fetched;
}