You are here

function follow_init in Follow 6

Same name and namespace in other branches
  1. 7 follow.module \follow_init()

Implementation of hook_init().

File

./follow.module, line 28
Allows users to add links to their social network profiles.

Code

function follow_init() {

  // Switch the Follow icon style.
  $style = variable_get('follow_icon_style', 'small');
  $path = drupal_get_path('module', 'follow') . '/icons/';
  drupal_add_css($path . $style . '.css');
}