Enhanced File Manager

2025-04-03 23:43:19
Disk Space: 7.56 GB / 24.93 GB (30.33%)

Drag & Drop files here or click to browse

Create New Folder

Create New File

Preview of create-location.php

<?php require_once __DIR__ . '/src/Services/Logger.php'; require_once __DIR__ . '/src/Api/McleodApiHandler.php'; header('Content-Type: application/json'); try { // Get JSON input $inputJSON = file_get_contents('php://input'); $locationData = json_decode($inputJSON, true); if (empty($locationData)) { throw new Exception('No location data provided'); } // Initialize logger $logger = new \Services\Logger(); $logger->info('Location creation request received: ' . $inputJSON); // Add required fields for McLeod API if (!isset($locationData['phone']) || empty($locationData['phone'])) { $locationData['phone'] = '0000000000'; // Default phone required by McLeod } if (!isset($locationData['country']) || empty($locationData['country'])) { $locationData['country'] = 'USA'; // Default country } if (!isset($locationData['is_active']) || empty($locationData['is_active'])) {
Parent Directory
logs
meki
src
templates
RateConProcessor.php
commodity-lookup.php
commodity_codes.txt
composer.json
create-location.php
file_manager.php
get-customer-by-mc.php
index.html
mcleod-editor.js
process-ratecon.php
search-customer.php
search-location.php
send-to-mcleod.php