aboutsummaryrefslogtreecommitdiffstats
path: root/mod/manage.php
diff options
context:
space:
mode:
authorChristian Vogeley <christian.vogeley@hotmail.de>2013-09-08 00:21:42 +0200
committerChristian Vogeley <christian.vogeley@hotmail.de>2013-09-08 00:21:42 +0200
commit94fb9c240661a9cd2b7199a648e9c5b4f9b69e8d (patch)
tree2643bae10d797a9eed1d8849e3726e59a65ab03a /mod/manage.php
parent02fe2d488155b0907c950eb3118c523940c6827f (diff)
downloadvolse-hubzilla-94fb9c240661a9cd2b7199a648e9c5b4f9b69e8d.tar.gz
volse-hubzilla-94fb9c240661a9cd2b7199a648e9c5b4f9b69e8d.tar.bz2
volse-hubzilla-94fb9c240661a9cd2b7199a648e9c5b4f9b69e8d.zip
Service class
identity, follow, photo upload, att upload
Diffstat (limited to 'mod/manage.php')
-rw-r--r--mod/manage.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/mod/manage.php b/mod/manage.php
index 2cdfce115..fad359535 100644
--- a/mod/manage.php
+++ b/mod/manage.php
@@ -53,6 +53,17 @@ function manage_content(&$a) {
$channels[$x]['default_links'] = '1';
}
}
+
+ $r = q("select count(channel_id) as total from channel where channel_account_id = %d ",
+ intval($account)
+ );
+ $limit = service_class_fetch(local_user(),'total_identities');
+ if($limit !== false) {
+ $channel_usage_message = sprintf( t("You have created %1$.0f of %2$.0f allowed channels."), $r[0]['total'], $limit);
+ }
+ else {
+ $channel_usage_message = '';
+ }
}
$links = array(
@@ -69,6 +80,7 @@ function manage_content(&$a) {
'$msg_make_default' => t('Make Default'),
'$links' => $links,
'$all_channels' => $channels,
+ '$channel_usage_message' => $channel_usage_message,
));