You are here

function scald_scald_actions in Scald: Media Management made easy 7

Implements hook_scald_actions().

File

./scald.module, line 1612
The Scald Core, which handles all Scald Registries and dispatch.

Code

function scald_scald_actions() {
  return array(
    'fetch' => array(
      'title' => t('Fetch'),
      'adjective' => t('Fetchable'),
      'description' => t('<see scald.admin.inc>'),
    ),
    'edit' => array(
      'title' => t('Edit'),
      'adjective' => t('Editable'),
      'description' => t('Edit the details of a Scald Atom'),
    ),
    'view' => array(
      'title' => t('View'),
      'adjective' => t('Viewable'),
      'description' => t('View a Scald Atom on-site'),
    ),
    'delete' => array(
      'title' => t('Delete'),
      'adjective' => t('Deletable'),
      'description' => t('Delete (unregister) a Scald Atom'),
    ),
  );
}