Merge branch 'saas-dev-publishing' of github.com:sourcefabric/airtime into saas-dev-publishing

This commit is contained in:
Duncan Sommerville 2015-11-17 17:50:20 -05:00
commit e75d614537
8 changed files with 134 additions and 3 deletions

View file

@ -374,4 +374,13 @@ class Billing
return 0;
}
}
public static function isStationPodcastAllowed() {
$planLevel = Application_Model_Preference::GetPlanLevel();
if ($planLevel == "hobbyist") {
return false;
} else {
return true;
}
}
}