aboutsummaryrefslogtreecommitdiffstats
path: root/include/contact_widgets.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-09-08 16:33:30 -0700
committerfriendica <info@friendica.com>2013-09-08 16:33:30 -0700
commitf8afdb3cba25dc7dc70ac3d7c6e48e6595bd97d5 (patch)
tree54d231b76eafef25a92dc6be8bfb0ad0215d4b95 /include/contact_widgets.php
parentb88f60b51ff9416c35b5af9ce849026666c47cc8 (diff)
parentb4a2361efc7bc4b49f5195a2c14573a41c55f300 (diff)
downloadvolse-hubzilla-f8afdb3cba25dc7dc70ac3d7c6e48e6595bd97d5.tar.gz
volse-hubzilla-f8afdb3cba25dc7dc70ac3d7c6e48e6595bd97d5.tar.bz2
volse-hubzilla-f8afdb3cba25dc7dc70ac3d7c6e48e6595bd97d5.zip
Merge pull request #118 from cvogeley/master
Service class checks
Diffstat (limited to 'include/contact_widgets.php')
-rw-r--r--include/contact_widgets.php19
1 files changed, 17 insertions, 2 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php
index e5f778e49..cc7d92508 100644
--- a/include/contact_widgets.php
+++ b/include/contact_widgets.php
@@ -1,12 +1,27 @@
<?php /** @file */
function follow_widget() {
-
+ $a = get_app();
+ $uid =$a->channel['channel_id'];
+ $r = q("select count(*) as total from abook where abook_channel = %d and not (abook_flags & %d) ",
+ intval($uid),
+ intval(ABOOK_FLAG_SELF)
+ );
+ 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 the channel address'),
'$hint' => t('Example: bob@example.com, http://example.com/barbara'),
- '$follow' => t('Connect')
+ '$follow' => t('Connect'),
+ '$abook_usage_message' => $abook_usage_message
));
}