Showing the network name on the display page.
This commit is contained in:
parent
dd511ac70a
commit
316f0a75cd
3 changed files with 12 additions and 2 deletions
10
boot.php
10
boot.php
|
@ -1487,6 +1487,15 @@ if(! function_exists('profile_sidebar')) {
|
||||||
|
|
||||||
$profile['picdate'] = urlencode($profile['picdate']);
|
$profile['picdate'] = urlencode($profile['picdate']);
|
||||||
|
|
||||||
|
if (($profile['network'] != "") AND ($profile['network'] != NETWORK_DFRN)) {
|
||||||
|
require_once('include/contact_selectors.php');
|
||||||
|
if ($profile['url'] != "")
|
||||||
|
$profile['network_name'] = '<a href="'.$profile['url'].'">'.network_to_name($profile['network'])."</a>";
|
||||||
|
else
|
||||||
|
$profile['network_name'] = network_to_name($profile['network']);
|
||||||
|
} else
|
||||||
|
$profile['network_name'] = "";
|
||||||
|
|
||||||
call_hooks('profile_sidebar_enter', $profile);
|
call_hooks('profile_sidebar_enter', $profile);
|
||||||
|
|
||||||
|
|
||||||
|
@ -1626,6 +1635,7 @@ if(! function_exists('profile_sidebar')) {
|
||||||
'$pdesc' => $pdesc,
|
'$pdesc' => $pdesc,
|
||||||
'$marital' => $marital,
|
'$marital' => $marital,
|
||||||
'$homepage' => $homepage,
|
'$homepage' => $homepage,
|
||||||
|
'$network' => t('Network:'),
|
||||||
'$diaspora' => $diaspora,
|
'$diaspora' => $diaspora,
|
||||||
'$contact_block' => $contact_block,
|
'$contact_block' => $contact_block,
|
||||||
));
|
));
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
{{else}}
|
{{else}}
|
||||||
<div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="{{$profile.photo}}" alt="{{$profile.name}}"></div>
|
<div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="{{$profile.photo}}" alt="{{$profile.name}}"></div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{if $profile.network_name}}<dl class="network"><dt class="network-label">{{$network}}</dt><dd class="x-network">{{$profile.network_name}}</dd></dl>{{/if}}
|
||||||
{{if $location}}
|
{{if $location}}
|
||||||
<dl class="location"><dt class="location-label">{{$location}}</dt>
|
<dl class="location"><dt class="location-label">{{$location}}</dt>
|
||||||
<dd class="adr">
|
<dd class="adr">
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $pdesc}}<div class="title">{{$profile.pdesc}}</div>{{/if}}
|
{{if $pdesc}}<div class="title">{{$profile.pdesc}}</div>{{/if}}
|
||||||
|
|
||||||
|
{{if $profile.network_name}}<dl class="network"><dt class="network-label">{{$network}}</dt><dd class="x-network">{{$profile.network_name}}</dd></dl>{{/if}}
|
||||||
{{if $location}}
|
{{if $location}}
|
||||||
<dl class="location"><dt class="location-label">{{$location}}</dt><br>
|
<dl class="location"><dt class="location-label">{{$location}}</dt><br>
|
||||||
<dd class="adr">
|
<dd class="adr">
|
||||||
|
|
Loading…
Reference in a new issue