]> git.mxchange.org Git - friendica.git/blob - include/contact_widgets.php
oauthapi: authorize app
[friendica.git] / include / contact_widgets.php
1 <?php
2
3 function follow_widget() {
4
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')
10         ));
11
12 }
13
14 function findpeople_widget() {
15
16         $a = get_app();
17
18         $inv = (($a->config['register_policy'] != REGISTER_CLOSED) ? t('Invite Friends') : '');
19
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) 
25                         . '</div>' . $inv;
26                 }
27         }
28  
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                 '$similar' => t('Similar Interests'),
36                 '$inv' => $inv
37         ));
38
39 }
40