function _follow_block_subject in Follow 6
Same name and namespace in other branches
- 5 follow.module \_follow_block_subject()
- 7.2 follow.module \_follow_block_subject()
- 7 follow.module \_follow_block_subject()
Helper function to build the block title.
Parameters
$uid: The uid of the user account. Defaults to the site form, $uid = 0.
1 call to _follow_block_subject()
- follow_block_view in ./
follow.module - Implementation of hook_block_view().
File
- ./
follow.module, line 237 - Allows users to add links to their social network profiles.
Code
function _follow_block_subject($uid = 0) {
return follow_link_title($uid) . ':';
}