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