| @@ -29,8 +29,10 @@ | ||
| 29 | 29 | $extensions =& CJTPlugin::getInstance()->extensions(); |
| 30 | 30 | // Get all CJT-Plugins (Include CJT Plugin itself + all its extensions) that has activate |
| 31 | 31 | // license key! |
| 32 | 32 | $activeLicenses = $model->getStatedLicenses(); |
| 33 | + // Import EDD updater Class! | |
| 34 | + cssJSToolbox::import('framework:third-party:easy-digital-download:auto-upgrade.class.php'); | |
| 33 | 35 | // Activate Automatic upgrade for all activated licenses/components! |
| 34 | 36 | foreach ($activeLicenses as $name => $state) { |
| 35 | 37 | // Get extension def doc. |
| 36 | 38 | // Act only if extension has XMl DOC! This might happened i fthe extension |
| @@ -40,16 +42,21 @@ | ||
| 40 | 42 | $updateSrcServer = (string) $extDef->license->attributes()->updateSrc; |
| 41 | 43 | if (!$updateSrcServer || ($updateSrcServer == 'CJT')) { |
| 42 | 44 | // Initializingn vars for a single state/component! |
| 43 | 45 | $pluginFile = ABSPATH . PLUGINDIR . '/' . $state['component']['pluginBase']; |
| 46 | + // Stop using Cached Data as it causes issue, always | |
| 47 | + // get fresh plugin data. | |
| 48 | + $plugin = get_plugin_data($pluginFile); | |
| 44 | 49 | $license =& $state['license']; |
| 50 | + // Edd API parameter to be send along with he check! | |
| 51 | + $requestParams= array( | |
| 52 | + 'version' => $plugin['Version'], | |
| 53 | + 'author' => $plugin['AuthorName'], | |
| 54 | + 'license' => $license['key'], | |
| 55 | + 'item_name' => $name, | |
| 56 | + ); | |
| 45 | 57 | // Set EDD Automatic Updater! |
| 46 | - try { | |
| 47 | - CJTStoreUpdate::autoUpgrade( $name, $license[ 'key' ], $pluginFile ); | |
| 48 | - } | |
| 49 | - catch ( CJTServicesAPICallException $exception ) { | |
| 50 | - die( 'CJT AUTO-UPGRADE EXCAPTION!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' ); | |
| 51 | - } | |
| 58 | + $updated = new CJT_EDD_SL_Plugin_Updater($cjtWebServer, $pluginFile, $requestParams); | |
| 52 | 59 | } |
| 53 | 60 | } |
| 54 | 61 | } |
| 55 | 62 | } |