You are here

function media_flickr_install in Media: Flickr 6

Same name and namespace in other branches
  1. 7 media_flickr.install \media_flickr_install()

Implementation of hook_install().

File

./media_flickr.install, line 11
Installation file for Media: Flickr.

Code

function media_flickr_install() {

  // Create tables.
  $success = drupal_install_schema('media_flickr');
  if ($success) {
    drupal_set_message(st("Media: Flickr's tables have been installed successfully."));
  }
  else {
    drupal_set_message(st('The installation of the Media: Flickr module failed.'), 'error');
  }
}