- not displaying manage folder option when saas is true - not displaying record and rebroadcast section when saas is true
12 lines
No EOL
283 B
PHP
12 lines
No EOL
283 B
PHP
<?php
|
|
|
|
class Airtime_View_Helper_IsSaas extends Zend_View_Helper_Abstract{
|
|
public function isSaas(){
|
|
$plan = Application_Model_Preference::GetPlanLevel();
|
|
if($plan == 'disabled'){
|
|
return false;
|
|
}else{
|
|
return true;
|
|
}
|
|
}
|
|
} |