You are here

function media_upload_media_action in D7 Media 6

Implementation of hook_media_action

TODO: Implement and document

File

media_upload/media_upload.module, line 193
This module provides integration for Drupal's upload module with the Media module

Code

function media_upload_media_action(&$form, $form_state, $op = '') {
  dsm("In the Media Upload action handler. Implement switch and carry out tasks.");
  dsm($op);
  dsm($form_state);
  dsm($form);
}