diff options
author | Christian Vogeley <christian.vogeley@hotmail.de> | 2013-09-08 18:03:26 +0200 |
---|---|---|
committer | Christian Vogeley <christian.vogeley@hotmail.de> | 2013-09-08 18:03:26 +0200 |
commit | e70c9b3613088f2a34f83cb2e78a1eaee152f8cb (patch) | |
tree | 7b51c5e13cfd614ac475ec403860efa0945eb9a2 /include/contact_widgets.php | |
parent | b88f60b51ff9416c35b5af9ce849026666c47cc8 (diff) | |
parent | f4dfb90dbc9b7590d9b8bf84df9ca746f1aa1d6f (diff) | |
download | volse-hubzilla-e70c9b3613088f2a34f83cb2e78a1eaee152f8cb.tar.gz volse-hubzilla-e70c9b3613088f2a34f83cb2e78a1eaee152f8cb.tar.bz2 volse-hubzilla-e70c9b3613088f2a34f83cb2e78a1eaee152f8cb.zip |
Merge service class
//service class configure in .htconfig.php:
$a->config['system']['default_service_class']='standard'; // this is
the default service class that is attached to every new account
$a->config['service_class']['standard'] =
array('photo_upload_limit'=>20000000, // total photo storage limit per
channel (here 20MB)
'total_identities' =>5, // number of channels an account can create
'total_items' =>2000, // number of top level posts a channel can
create. Applies only to top level posts of the user, other posts and
comments are unaffected
'total_pages' =>10, // number of pages a channel can create
'total_channels' =>500, // number of channels the user can add, other
users can still add this channel, even if the limit is reached
'attach_upload_limit' =>20000000); // total attachment storage limit
per channel (here 20MB)
Diffstat (limited to 'include/contact_widgets.php')
-rw-r--r-- | include/contact_widgets.php | 19 |
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 )); } |