aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Service_limits.php
blob: 2a1f78054c7fa91781a9703e0d3e89d80287dd88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
namespace Zotlabs\Module; /** @file */



class Service_limits extends \Zotlabs\Web\Controller {

	function get() {
	
		if(! local_channel()) {
			notice( t('Permission denied.') . EOL);
			return;
		}
	
		$account = \App::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.');
	}
			
	
			
}