Restrict podcast hosting for some plans. Fixed error page colours.

This commit is contained in:
Albert Santoni 2015-11-17 17:34:13 -05:00
parent ef1a57459c
commit c5d9dfd93d
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;
}
}
}