Service class

identity, follow, photo upload, att upload
This commit is contained in:
Christian Vogeley
2013-09-08 00:21:42 +02:00
parent 02fe2d4881
commit 94fb9c2406
7 changed files with 55 additions and 12 deletions

View File

@@ -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
));
}