Files
piratepoet/lib/Util/License/License.php
Vlad 7d2e13b9a3 - Updates license check logic
- Updates subscriber limit check logic
- Updates unit tests
- Updates Menu's check for subscriber limit
2016-10-27 12:35:57 -04:00

13 lines
258 B
PHP

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