You are here

function media_unsplash_media_internet_providers in Media Unsplash 7

Implements hook_media_internet_providers().

Provides a very basic handler which copies files from remote sources to the local files directory.

File

./media_unsplash.media.inc, line 28
Media module integration for the Media Unsplash module.

Code

function media_unsplash_media_internet_providers() {
  return array(
    'MediaUnsplashHandler' => array(
      'title' => 'Unsplash',
      'hidden' => TRUE,
      'weight' => 9999,
    ),
  );
}