You are here

function follow_block in Follow 5

Same name and namespace in other branches
  1. 6 follow.module \follow_block()

Implementation of hook_block().

File

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

Code

function follow_block($op = 'list', $delta = 0, $edit = array()) {
  $function = 'follow_block_' . $op;
  if (function_exists($function)) {
    return $function($delta, $edit);
  }
}