You are here

function hook_scald_atom_providers_opt in Scald: Media Management made easy 7

Define additional information about atom providers provided by a module.

Return value

array An array of options per provider. This array is keyed by the unified atom type. Each provider can define any number of additional options to be used elsewhere.

File

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

Code

function hook_scald_atom_providers_opt() {

  // The starting_step can be used to skip the add step
  // when the provider does not need it.
  return array(
    'gallery' => array(
      'starting_step' => 'options',
    ),
  );
}