You are here

function hook_scald_render in Scald: Media Management made easy 7

Respond to atom render.

It is used by Scald and other modules to provide markup for contexts created in code.

@codingStandardsIgnoreStart

Parameters

ScaldAtom $atom: The atom being rendered.

string $context: The context used to render.

array $options: The options which is a string in JSON format.

2 functions implement hook_scald_render()

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

scald_dnd_library_scald_render in modules/library/scald_dnd_library/scald_dnd_library.module
Implements hook_scald_render().
scald_scald_render in ./scald.module
Implements hook_scald_render().
1 invocation of hook_scald_render()
scald_render in ./scald.module
Render a Scald Atom.

File

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

Code

function hook_scald_render($atom, $context, $options) {

  // @codingStandardsIgnoreEnd
}