]> git.mxchange.org Git - friendica.git/commitdiff
Update Contact.php
authormaase2 <maasen2009@googlemail.com>
Tue, 5 Nov 2013 21:06:23 +0000 (22:06 +0100)
committermaase2 <maasen2009@googlemail.com>
Tue, 5 Nov 2013 21:06:23 +0000 (22:06 +0100)
Add the delete option for a contact.

include/Contact.php

index 04d3fa9e5d013a0a426b7c8af155fbd90edebdf9..ce1edbcc2164cc2336047fcfc9b08dcc1449037d 100644 (file)
@@ -197,6 +197,7 @@ function contact_photo_menu($contact) {
        $status_link="";
        $photos_link="";
        $posts_link="";
+       $contact_drop_link = "";
        $poke_link="";
 
        $sparkle = false;
@@ -214,6 +215,7 @@ function contact_photo_menu($contact) {
                $status_link = $profile_link . "?url=status";
                $photos_link = $profile_link . "?url=photos";
                $profile_link = $profile_link . "?url=profile";
+               $contact_drop_link = $a->get_baseurl() . '/contacts/' . $contact['id'] . '/drop';
                $pm_url = $a->get_baseurl() . '/message/new/' . $contact['id'];
        }
 
@@ -228,6 +230,7 @@ function contact_photo_menu($contact) {
                'photos' => array(t("View Photos"), $photos_link),              
                'network' => array(t("Network Posts"), $posts_link), 
                'edit' => array(t("Edit Contact"), $contact_url),
+               'drop' => array(t("Drop Contact"), $contact_drop_link),
                'pm' => array(t("Send PM"), $pm_url),
        );