3 function follow_widget() {
5 return replace_macros(get_markup_template('follow.tpl'),array(
6 '$connect' => t('Add New Contact'),
7 '$desc' => t('Enter address or web location'),
8 '$hint' => t('Example: bob@example.com, http://example.com/barbara'),
9 '$follow' => t('Connect')
14 function findpeople_widget() {
18 $inv = (($a->config['register_policy'] != REGISTER_CLOSED) ? t('Invite Friends') : '');
20 if(get_config('system','invitation_only')) {
21 $x = get_pconfig(local_user(),'system','invites_remaining');
22 if($x || is_site_admin()) {
23 $a->page['aside'] .= '<div class="side-link" id="side-invite-remain">'
24 . sprintf( tt('%d invitation available','%d invitations available',$x), $x)
29 return replace_macros(get_markup_template('peoplefind.tpl'),array(
30 '$findpeople' => t('Find People'),
31 '$desc' => t('Enter name or interest'),
32 '$label' => t('Connect/Follow'),
33 '$hint' => t('Examples: Robert Morgenstein, Fishing'),
34 '$findthem' => t('Find'),
35 '$suggest' => t('Friend Suggestions'),
36 '$similar' => t('Similar Interests'),