function scald_is_fetched in Scald: Media Management made easy 7
Same name and namespace in other branches
- 6 scald.module \scald_is_fetched()
Determine if a Scald Atom is fetched.
@codingStandardsIgnoreStart
Parameters
ScaldAtom $atom: The Scald Atom to test.
Return value
bool TRUE/FALSE
1 call to scald_is_fetched()
- scald_render in ./
scald.module - Render a Scald Atom.
File
- ./
scald.module, line 731 - The Scald Core, which handles all Scald Registries and dispatch.
Code
function scald_is_fetched($atom = NULL) {
// @codingStandardsIgnoreEnd
return is_object($atom) && isset($atom->fetched) && $atom->fetched;
}