Showing 469–480 of 6371 resultsSorted by price: low to high
public function getOrderStatus($order_reference) { $allocation_status = $this->checkOrderAllocation($order_reference); $tracking_status = $this->checkOrderTracking($order_reference); return [ 'order_reference' => $order_reference, 'allocation' => $allocation_status, 'tracking' => $tracking_status ]; } /** * Add FTP test page to admin menu */ public function add_test_page() { add_submenu_page( 'woocommerce', 'FTP Connection Test', 'Test FTP Connection', 'manage_woocommerce', 'test-ftp-connection', array($this, 'test_page_content') ); } /** * FTP test page content */ public function test_page_content() { echo '
Message: ' . esc_html($result['message']) . '
'; if ($result['status'] === 'success') { echo 'Current Directory: ' . esc_html($result['current_dir']) . '
'; if (isset($result['root_contents'])) { echo 'Root Directory Contents:
Target Directories:
'; echo 'Sample Acknowledgement Files:
Host: ' . esc_html($result['host']) . '
'; echo 'Username: ' . esc_html($result['username']) . '
'; } } echo 'Showing 469–480 of 6371 resultsSorted by price: low to high