- Updates license check logic

- Updates subscriber limit check logic
- Updates unit tests
- Updates Menu's check for subscriber limit
This commit is contained in:
Vlad
2016-10-27 12:35:57 -04:00
parent a4395f2350
commit 7d2e13b9a3
6 changed files with 38 additions and 69 deletions

View File

@ -107,7 +107,6 @@ class Initializer {
$this->setupShortcodes();
$this->setupHooks();
$this->setupImages();
$this->setupLicense();
$this->setupCronTrigger();
$this->plugin_initialized = true;
@ -211,9 +210,4 @@ class Initializer {
function handleFailedInitialization($message) {
return WPNotice::displayError($message);
}
function setupLicense() {
$license = new License();
$license->init();
}
}