X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fcontact_widgets.php;h=0b82fcb8f36b64b090fe82a99e14d07225d74123;hb=2148a2bdb0cb38d3a085109eeeb6acc5d65484e6;hp=3e9854b9f03d55b52765fcf6d4e8c469156659af;hpb=85d55921809e6306e598f7b114dc1c6975eea2dc;p=friendica.git diff --git a/include/contact_widgets.php b/include/contact_widgets.php index 3e9854b9f0..0b82fcb8f3 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -1,8 +1,11 @@ t('Add New Contact'), '$desc' => t('Enter address or web location'), '$hint' => t('Example: bob@example.com, http://example.com/barbara'), @@ -16,16 +19,18 @@ function findpeople_widget() { require_once 'include/Contact.php'; $a = get_app(); + $global_dir = Config::get('system', 'directory'); + if (get_config('system', 'invitation_only')) { $x = get_pconfig(local_user(), 'system', 'invites_remaining'); if ($x || is_site_admin()) { $a->page['aside'] .= '' . $inv; } } - return replace_macros(get_markup_template('peoplefind.tpl'),array( + return replace_macros(get_markup_template('peoplefind.tpl'), array( '$findpeople' => t('Find People'), '$desc' => t('Enter name or interest'), '$label' => t('Connect/Follow'), @@ -34,7 +39,9 @@ function findpeople_widget() { '$suggest' => t('Friend Suggestions'), '$similar' => t('Similar Interests'), '$random' => t('Random Profile'), - '$inv' => t('Invite Friends') + '$inv' => t('Invite Friends'), + '$directory' => t('View Global Directory'), + '$global_dir' => $global_dir )); } @@ -48,7 +55,7 @@ function unavailable_networks() { $networks[] = NETWORK_APPNET; } - if (!plugin_enabled("fbpost") AND !plugin_enabled("facebook")) { + if (!plugin_enabled("fbpost") && !plugin_enabled("facebook")) { $networks[] = NETWORK_FACEBOOK; } @@ -95,7 +102,7 @@ function networks_widget($baseurl, $selected = '') { return ''; } - if (!feature_enabled(local_user(),'networks')) { + if (!feature_enabled(local_user(), 'networks')) { return ''; } @@ -120,7 +127,7 @@ function networks_widget($baseurl, $selected = '') { return ''; } - return replace_macros(get_markup_template('nets.tpl'),array( + return replace_macros(get_markup_template('nets.tpl'), array( '$title' => t('Networks'), '$desc' => '', '$sel_all' => (($selected == '') ? 'selected' : ''), @@ -136,26 +143,26 @@ function fileas_widget($baseurl, $selected = '') { return ''; } - if (! feature_enabled(local_user(),'filing')) { + if (! feature_enabled(local_user(), 'filing')) { return ''; } - $saved = get_pconfig(local_user(),'system', 'filetags'); + $saved = get_pconfig(local_user(), 'system', 'filetags'); if (! strlen($saved)) { return; } $matches = false; $terms = array(); - $cnt = preg_match_all('/\[(.*?)\]/', $saved, $matches,PREG_SET_ORDER); + $cnt = preg_match_all('/\[(.*?)\]/', $saved, $matches, PREG_SET_ORDER); if ($cnt) { foreach ($matches as $mtch) { $unescaped = xmlify(file_tag_decode($mtch[1])); - $terms[] = array('name' => $unescaped,'selected' => (($selected == $unescaped) ? 'selected' : '')); + $terms[] = array('name' => $unescaped, 'selected' => (($selected == $unescaped) ? 'selected' : '')); } } - return replace_macros(get_markup_template('fileas_widget.tpl'),array( + return replace_macros(get_markup_template('fileas_widget.tpl'), array( '$title' => t('Saved Folders'), '$desc' => '', '$sel_all' => (($selected == '') ? 'selected' : ''), @@ -170,26 +177,27 @@ function categories_widget($baseurl, $selected = '') { $a = get_app(); - if (! feature_enabled($a->profile['profile_uid'],'categories')) { + if (! feature_enabled($a->profile['profile_uid'], 'categories')) { return ''; } - $saved = get_pconfig($a->profile['profile_uid'],'system', 'filetags'); + $saved = get_pconfig($a->profile['profile_uid'], 'system', 'filetags'); if (! strlen($saved)) { return; } $matches = false; $terms = array(); - $cnt = preg_match_all('/<(.*?)>/',$saved,$matches,PREG_SET_ORDER); - if ($cnt) { - foreach ($matches as $mtch) { - $unescaped = xmlify(file_tag_decode($mtch[1])); - $terms[] = array('name' => $unescaped,'selected' => (($selected == $unescaped) ? 'selected' : '')); + $cnt = preg_match_all('/<(.*?)>/', $saved, $matches, PREG_SET_ORDER); + + if ($cnt) { + foreach ($matches as $mtch) { + $unescaped = xmlify(file_tag_decode($mtch[1])); + $terms[] = array('name' => $unescaped, 'selected' => (($selected == $unescaped) ? 'selected' : '')); } } - return replace_macros(get_markup_template('categories_widget.tpl'),array( + return replace_macros(get_markup_template('categories_widget.tpl'), array( '$title' => t('Categories'), '$desc' => '', '$sel_all' => (($selected == '') ? 'selected' : ''), @@ -204,8 +212,9 @@ function common_friends_visitor_widget($profile_uid) { $a = get_app(); - if (local_user() == $profile_uid) + if (local_user() == $profile_uid) { return; + } $cid = $zcid = 0;