EVOLUTION-MANAGER
Edit File: gates.php
<?php ini_set('log_errors', 1); ini_set('error_log', 'php-error.log'); require_once 'config.php'; require_once 'telegram.php'; $bot = new TelegramBot(BOT_TOKEN, BOT_LOGS, BOT_GROUP); $bot->dbInfo(DB_HOST, DB_DATABASE, DB_USERNAME, DB_PASSWORD); require 'classes/CurlX.php'; require 'classes/Response.php'; require 'classes/Tools.php'; require 'classes/Generator.php'; $curlx = new CurlX; $response = new Response; $tools = new Tools; $generator = new GenCard; $bot->setChkAPI($curlx, $response, $tools); $gates = $bot->fetchTools(); $json = []; foreach ($gates as $gate) { $json[$gate['cmd']] = [ 'status' => $gate['status'], 'name' => $gate['name'], 'access' => $gate['type'], 'info' => $gate['info'], 'comm' => $gate['comm'], 'status' => $gate['status'], 'format' => $gate['format'], 'creation' => $gate['creation'] ]; } file_put_contents('gates.txt', json_encode($json, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)); ?>