PluginProbe
CSS & JavaScript Toolbox / 6.0.7
CSS & JavaScript Toolbox v6.0.7
trunk 0.3 0.8 10 10.1 11 11.2 11.3 11.4 11.5 11.6 11.7 11.8 11.9 11.9.1 12 12.0 12.0.1 12.0.3 12.0.4 12.0.5 12.0.6 12.0.7 6.0 6.0.11 All 60 releases
css-javascript-toolbox / controllers / auto-upgrade.php

auto-upgrade.php in CSS & JavaScript Toolbox 6.0.7, at controllers/auto-upgrade.php

54 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 *
4 */
5
6 // Disallow direct access.
7 defined('ABSPATH') or die("Access denied");
8
9 /**
10 *
11 */
12 class CJTAutoUpgradeController extends CJTController {
13
14 /**
15 * put your comment there...
16 *
17 * @var mixed
18 */
19 protected $controllerInfo = array('model' => 'setup');
20
21 /**
22 * put your comment there...
23 *
24 */
25 protected function enableAction() {
26 // Initializing!
27 $model = $this->model;
28 $cjtWebServer = cssJSToolbox::getCJTWebSiteURL();
29 // Get all CJT-Plugins (Include CJT Plugin itself + all its extensions) that has activate
30 // license key!
31 $activeLicenses = $model->getStatedLicenses();
32 // Import EDD updater Class!
33 if (!class_exists('EDD_SL_Plugin_Updater')) {
34 cssJSToolbox::import('framework:third-party:easy-digital-download:auto-upgrade.class.php');
35 }
36 // Activate Automatic upgrade for all activated licenses/components!
37 foreach ($activeLicenses as $name => $state) {
38 // Initializingn vars for a single state/component!
39 $plugin =& $state['plugin'];
40 $license =& $state['license'];
41 $componentPluginPath = ABSPATH . PLUGINDIR . "/{$state['component']['pluginBase']}";
42 // Edd API parameter to be send along with he check!
43 $requestParams= array(
44 'version' => $plugin['Version'],
45 'author' => $plugin['AuthorName'],
46 'license' => $license['key'],
47 'item_name' => $name,
48 );
49 // Set EDD Automatic Updater!
50 $updated = new EDD_SL_Plugin_Updater($cjtWebServer, $componentPluginPath, $requestParams);
51 }
52 }
53 } // End class.
54