function follow_admin_paths in Follow 7
Same name and namespace in other branches
- 7.2 follow.module \follow_admin_paths()
Implements hook_admin_paths().
Have the Follow links for the user pop up in the Overlay.
File
- ./
follow.module, line 895 - Allows users to add links to their social network profiles.
Code
function follow_admin_paths() {
$paths = array(
'user/*/follow' => TRUE,
);
return $paths;
}