2017-12-06 16:41:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace api\module;
|
|
|
|
|
|
|
|
|
|
|
|
use \error\core\Error;
|
|
|
|
use \error\core\Err;
|
|
|
|
use \database\core\Repo;
|
|
|
|
use \api\core\AuthSystemDefault;
|
|
|
|
|
|
|
|
|
|
|
|
class dev{
|
|
|
|
|
|
|
|
public function __construct(){}
|
|
|
|
|
|
|
|
public function __destruct(){}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function GET_session_destroy($argv){
|
|
|
|
extract($argv);
|
|
|
|
|
|
|
|
$_SESSION = [];
|
|
|
|
|
|
|
|
return ['notice' => 'reload the website NOW !!'];
|
|
|
|
}
|
|
|
|
|
2017-12-07 15:34:36 +00:00
|
|
|
public function GET_release($argv){
|
|
|
|
extract($argv);
|
|
|
|
|
|
|
|
\chdir(__ROOT__);
|
|
|
|
|
|
|
|
return [ 'stdout' => \shell_exec("git pull origin master") ];
|
|
|
|
}
|
|
|
|
|
2017-12-06 16:41:25 +00:00
|
|
|
}
|