Files
piratepoet/lib/Util/License/License.php
Ján Mikláš cec2065486 Create premium banner component for stats page
[MAILPOET-2104]
2019-07-03 11:59:23 -04:00

16 lines
308 B
PHP

<?php
namespace MailPoet\Util\License;
class License {
const FREE_PREMIUM_SUBSCRIBERS_LIMIT = 1000;
static function getLicense($license = false) {
if (!$license) {
$license = defined('MAILPOET_PREMIUM_LICENSE') ?
MAILPOET_PREMIUM_LICENSE :
false;
}
return $license;
}
}