Enhanced File Manager

2025-04-03 23:47:32
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 RateConProcessor.php

<?php require_once __DIR__ . '/src/Services/Logger.php'; class RateConProcessor { private $mcleodApiKey; private $mcleodApiEndpoint; private $storagePath; private $logger; public function __construct($mcleodApiKey, $mcleodApiEndpoint, $storagePath = null) { $this->mcleodApiKey = $mcleodApiKey; $this->mcleodApiEndpoint = $mcleodApiEndpoint; // Fallback log and storage paths $fallbackLogDir = '/tmp/mcleod_logs/'; $fallbackStoragePath = '/tmp/mcleod_storage/'; // Ensure fallback directories exist if (!file_exists($fallbackLogDir)) { @mkdir($fallbackLogDir, 0755, true); } if (!file_exists($fallbackStoragePath)) { @mkdir($fallbackStoragePath, 0755, true); } // Set storage path with fallback if ($storagePath === null) { $this->storagePath = $fallbackStoragePath; } else { $t
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