$plugin = <<403WebShell
403Webshell
Server IP : 147.79.116.139  /  Your IP : 216.73.216.214
Web Server : LiteSpeed
System : Linux fr-int-web1513.main-hosting.eu 5.14.0-570.62.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 10:10:59 EST 2025 x86_64
User : u766115111 ( 766115111)
PHP Version : 8.2.30
Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/cache/hostinger-wp-cli-packages/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/cache/hostinger-wp-cli-packages/hostinger-command.php
<?php

use Hostinger\WPCLI\Woocommerce\GetOrdersCommand;
use Hostinger\WPCLI\Woocommerce\GetWooOrdersCommand;
use Hostinger\WPCLI\Woocommerce\GetOrdersUpdatedCommand;

if ( ! class_exists( 'WP_CLI' ) ) {
    return;
}

$wpcli_hostinger_autoloader = __DIR__ . '/vendor/autoload.php';

if ( file_exists( $wpcli_hostinger_autoloader ) ) {
    require_once $wpcli_hostinger_autoloader;
}


if ( class_exists( GetOrdersCommand::class ) ) {
    WP_CLI::add_command( 'hostinger woocommerce get-orders', GetOrdersCommand::class, [
        'shortdesc' => 'Retrieve WooCommerce orders based on date range.',
        'longdesc'  => "Fetch all WooCommerce orders either from a specific date or for a set number of days.\n\n"
                       . "## EXAMPLES\n\n"
                       . "  wp hostinger woocommerce get-orders --days=7\n"
                       . "  Retrieves orders from the past 7 days.\n\n"
                       . "  wp hostinger woocommerce get-orders --from-date=2025-01-01\n"
                       . "  Retrieves orders from 2025-01-01 until yesterday.\n\n"
                       . "  wp hostinger woocommerce get-orders --from-date=2025-01-01 --to-date=2025-01-31\n"
                       . "  Retrieves orders for the exact date range.",
        'when'      => 'after_wp_load',
    ] );
}

if ( class_exists( GetWooOrdersCommand::class ) ) {
    WP_CLI::add_command( 'hostinger woocommerce get-woo-orders', GetWooOrdersCommand::class, [
        'shortdesc' => 'Retrieve WooCommerce orders based on date range.',
        'longdesc'  => "Fetch all WooCommerce orders either from a specific date or for a set number of days.\n\n"
                       . "## EXAMPLES\n\n"
                       . "  wp hostinger woocommerce get-woo-orders --from-date=2025-01-01\n"
                       . "  Retrieves all orders from 2025-01-01 until now.\n\n"
                       . "  wp hostinger woocommerce get-woo-orders --days=7\n"
                       . "  Retrieves all orders from the past 7 days.",
        'when'      => 'after_wp_load',
    ] );
}

if ( class_exists( GetOrdersUpdatedCommand::class ) ) {
    WP_CLI::add_command( 'hostinger woocommerce get-woo-orders-latest', GetOrdersUpdatedCommand::class, [
        'shortdesc' => 'Retrieve WooCommerce orders based on date range.',
        'longdesc'  => "Fetch all WooCommerce orders either from a specific date or for a set number of days.\n\n"
                       . "## EXAMPLES\n\n"
                       . "  wp hostinger woocommerce get-woo-orders-latest --from-date=2025-01-01\n"
                       . "  Retrieves all orders from 2025-01-01 until now.\n\n"
                       . "  wp hostinger woocommerce get-woo-orders-latest --days=7\n"
                       . "  Retrieves all orders from the past 7 days.",
        'when'      => 'after_wp_load',
    ] );
}

Youez - 2016 - github.com/yon3zu
LinuXploit