aboutsummaryrefslogblamecommitdiffstats
path: root/mod/service_limits.php
blob: 83ae2e06c136d89a91186bef25d88c92fe67612d (plain) (tree)






















                                                                                    
<?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.');
}