diff options
author | friendica <info@friendica.com> | 2014-09-11 16:13:44 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-11 16:13:44 -0700 |
commit | 653ed27fc9640f81b07484b9bed6f6cedfc11b44 (patch) | |
tree | 0898bb70d8b501c2e16d12c18954773cd59e43d5 | |
parent | d2ce5f3b80b0e140ed3d86e33fcf4eeb0e2f40bf (diff) | |
download | volse-hubzilla-653ed27fc9640f81b07484b9bed6f6cedfc11b44.tar.gz volse-hubzilla-653ed27fc9640f81b07484b9bed6f6cedfc11b44.tar.bz2 volse-hubzilla-653ed27fc9640f81b07484b9bed6f6cedfc11b44.zip |
new module - service_limits - print service class limits for logged in account. It is a debugging tool and not meant to be pretty.
-rw-r--r-- | mod/service_limits.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mod/service_limits.php b/mod/service_limits.php new file mode 100644 index 000000000..83ae2e06c --- /dev/null +++ b/mod/service_limits.php @@ -0,0 +1,23 @@ +<?php /** @file */ + + +function service_limits_content(&$a) { + + if(! local_user()) { + notice( t('Permission denied.') . EOL); + return; + } + + $account = $a->get_account(); + if($account['account_service_class']) { + $x = get_config('service_class',$account['account_service_class']); + if($x) { + $o = print_r($x,true); + return $o; + } + } + return t('No service class restrictions found.'); +} + + +
\ No newline at end of file |