You are here

function scald_admin_types in Scald: Media Management made easy 6

The Scald Admin page for Scald Unified Types.

1 string reference to 'scald_admin_types'
scald_menu in ./scald.module
Implementation of hook_menu().

File

./scald.admin.inc, line 65

Code

function scald_admin_types() {
  $scald_config = variable_get('scald_config', 0);
  $content = t('
    <h3>Scald Unified Types</h3>
    <br>
    <p>Scald Unified Types are a way of dealing with various different media *formats* in a uniform manner.  For instance, from the average user\'s perspective, a JPEG and a PNG are pretty much the same thing.  Both could be classified as the Scald Unified Type "Image".</p>
    <p>When users interact with Atoms, they will often see the title of the Type of Atom.  That title can be customized below.  Be sure to specify the title in the singular, not plural, form.</p>
  ');
  return $content . drupal_get_form('scald_admin_types_form');
}