You are here

function scald_example_content_type_scald_provider in Scald: Media Management made easy 6

Implements hook_scald_provider.

File

scald_example_content_type/scald_example_content_type.module, line 89
Contains an example implementation of a node type that will be used to provide atoms to Scald. For this example sake, we(ll be providing Image atoms based on pictures attached to this node.

Code

function scald_example_content_type_scald_provider() {
  return array(
    'atoms' => array(
      'image' => array(
        'An image attached to an example node',
      ),
    ),
  );
}