aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/New_channel.php
diff options
context:
space:
mode:
authorM. Dent <dentm42@gmail.com>2018-09-28 04:46:48 +0200
committerM. Dent <dentm42@gmail.com>2018-09-28 04:46:48 +0200
commit1b7e220de734f30cf22452e36fe6b746676ddf46 (patch)
tree52304d5cacf5f6aa552bf5ccd233f9960afec7fc /Zotlabs/Module/New_channel.php
parent1e85c40c42946f84b5197056a2b71040071ec095 (diff)
parentfe8b72362286ce55044e38524179e6694acda014 (diff)
downloadvolse-hubzilla-1b7e220de734f30cf22452e36fe6b746676ddf46.tar.gz
volse-hubzilla-1b7e220de734f30cf22452e36fe6b746676ddf46.tar.bz2
volse-hubzilla-1b7e220de734f30cf22452e36fe6b746676ddf46.zip
Merge branch 'channel-limits' into 'dev'
Hide form when at or over service_class['limit_identities'] See merge request hubzilla/core!1292
Diffstat (limited to 'Zotlabs/Module/New_channel.php')
-rw-r--r--Zotlabs/Module/New_channel.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/Zotlabs/Module/New_channel.php b/Zotlabs/Module/New_channel.php
index 97a46a43e..ebdd6c37f 100644
--- a/Zotlabs/Module/New_channel.php
+++ b/Zotlabs/Module/New_channel.php
@@ -142,9 +142,12 @@ class New_channel extends \Zotlabs\Web\Controller {
}
$limit = account_service_class_fetch(get_account_id(),'total_identities');
-
+ $canadd = true;
if($r && ($limit !== false)) {
$channel_usage_message = sprintf( t("You have created %1$.0f of %2$.0f allowed channels."), $r[0]['total'], $limit);
+ if ($r[0]['total'] >= $limit) {
+ $canadd = false;
+ }
}
else {
$channel_usage_message = '';
@@ -186,7 +189,8 @@ class New_channel extends \Zotlabs\Web\Controller {
'$nickname' => $nickname,
'$validate' => t('Validate'),
'$submit' => t('Create'),
- '$channel_usage_message' => $channel_usage_message
+ '$channel_usage_message' => $channel_usage_message,
+ '$canadd' => $canadd
));
return $o;