mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:02:54 +00:00
and the main photo menu
This commit is contained in:
parent
64bd634582
commit
9c72b45f36
2 changed files with 6 additions and 2 deletions
|
@ -910,6 +910,7 @@ function item_photo_menu($item){
|
|||
if(! count($a->contacts))
|
||||
load_contact_links(local_user());
|
||||
}
|
||||
$poke_link="";
|
||||
$contact_url="";
|
||||
$pm_url="";
|
||||
$status_link="";
|
||||
|
@ -939,6 +940,7 @@ function item_photo_menu($item){
|
|||
}
|
||||
}
|
||||
if(($cid) && (! $item['self'])) {
|
||||
$poke_link = $a->get_baseurl($ssl_state) . '/poke/?f=&c=' . $cid;
|
||||
$contact_url = $a->get_baseurl($ssl_state) . '/contacts/' . $cid;
|
||||
$posts_link = $a->get_baseurl($ssl_state) . '/network/?cid=' . $cid;
|
||||
|
||||
|
@ -961,6 +963,7 @@ function item_photo_menu($item){
|
|||
t("Network Posts") => $posts_link,
|
||||
t("Edit Contact") => $contact_url,
|
||||
t("Send PM") => $pm_url,
|
||||
t("Poke") => $poke_link
|
||||
);
|
||||
|
||||
|
||||
|
@ -972,7 +975,7 @@ function item_photo_menu($item){
|
|||
|
||||
$o = "";
|
||||
foreach($menu as $k=>$v){
|
||||
if ($v!="") $o .= "<li><a href='$v'>$k</a></li>\n";
|
||||
if ($v!="") $o .= "<li><a href=\"$v\">$k</a></li>\n";
|
||||
}
|
||||
return $o;
|
||||
}}
|
||||
|
|
|
@ -150,7 +150,8 @@ EOT;
|
|||
|
||||
$shortlist = array();
|
||||
foreach($verbs as $k => $v)
|
||||
$shortlist[] = array($k,$v[1]);
|
||||
if($v[1] !== 'NOTRANSLATION')
|
||||
$shortlist[] = array($k,$v[1]);
|
||||
|
||||
|
||||
$tpl = get_markup_template('poke_content.tpl');
|
||||
|
|
Loading…
Reference in a new issue