You are here

function flickr_init in Flickr 6

Implements hook_init().

File

./flickr.module, line 19

Code

function flickr_init() {

  // Determine the setting to use flickr.css or not.
  if (variable_get('flickr_css', 1)) {
    drupal_add_css(drupal_get_path('module', 'flickr') . '/flickr.css', $type = 'module', $media = 'all', $preprocess = TRUE);
  }
}