aboutsummaryrefslogblamecommitdiffstats
path: root/mod/follow.php
blob: 9f5a8183b496a5929b8bede39dc1194c91a347c1 (plain) (tree)
1
2
3
4
5
6
7
8
9

     
 
                                   
 
                           

                            
                       

         
                            
                                              
                                              
                                                
 
                                                                         
 


                                                   
                                    
         
 
                                         
 
                                                                          
 
 
 
                              




                               
<?php


require_once('include/follow.php');

function follow_init(&$a) {

	if(! local_user()) {
		return;
	}

	$uid = local_user();
	$url = notags(trim($_REQUEST['url']));
	$return_url = $_SESSION['return_url'];
	$confirm = intval($_REQUEST['confirm']);

	$result = new_contact($uid,$url,$a->get_channel(),true,$confirm);

	if($result['success'] == false) {
		if($result['message'])
			notice($result['message']);
		goaway($return_url);
	}

	info( t('Channel added.') . EOL);

	goaway(z_root() . '/connections/' . $result['abook']['abook_id']);

}

function follow_content(&$a) {

	if(! local_user()) {
		return login();
	}
}