2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
$id = post('id');
|
|
|
|
|
2019-05-03 15:41:48 +02:00
|
|
|
switch (filter('op')) {
|
2018-09-19 09:51:36 +02:00
|
|
|
case 'check':
|
|
|
|
$api = json_decode(get_remote_data('https://api.github.com/repos/devcode-it/openstamanager/releases'), true);
|
|
|
|
|
|
|
|
$version = ltrim($api[0]['tag_name'], 'v');
|
|
|
|
$current = Update::getVersion();
|
|
|
|
|
|
|
|
if (version_compare($current, $version) < 0) {
|
|
|
|
echo $version;
|
|
|
|
} else {
|
|
|
|
echo 'none';
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
case 'upload':
|
2019-05-04 02:03:42 +02:00
|
|
|
include DOCROOT.'/modules/aggiornamenti/upload_modules.php';
|
2019-05-03 15:41:48 +02:00
|
|
|
|
|
|
|
break;
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|