aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Follow.php
blob: 2a0abb02773b002dd7d9de5823bd2a080159305c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php

/**
 *   * Name: Follow
 *   * Description: A simple form which allows you to enter an address and send a follow request
 */

namespace Zotlabs\Widget;


class Follow {

	function widget($args) {
		if(! local_channel())
			return '';

		$uid = \App::$channel['channel_id'];
		$r = q("select count(*) as total from abook where abook_channel = %d and abook_self = 0 ",
			intval($uid)
		);

		if($r)
			$total_channels = $r[0]['total'];

		$limit = service_class_fetch($uid,'total_channels');
		if($limit !== false) {
			$abook_usage_message = sprintf( t("You have %1$.0f of %2$.0f allowed connections."), $total_channels, $limit);
		}
		else {
			$abook_usage_message = '';
 		}

		return replace_macros(get_markup_template('follow.tpl'),array(
			'$connect' => t('Add New Connection'),
			'$desc' => t('Enter channel address'),
			'$hint' => t('Examples: bob@example.com, https://example.com/barbara'),
			'$follow' => t('Connect'),
			'$abook_usage_message' => $abook_usage_message
		));
	}
}