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.135.209.47
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/Factories/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/tacafoundation.org/wp-content/plugins/give/src/TestData/Factories/LogFactory.php
<?php

namespace Give\TestData\Factories;

use Give\TestData\Framework\Factory;

/**
 * Class LogFactory
 * @package Give\TestData\Factories
 */
class LogFactory extends Factory
{
    /**
     * @var string
     */
    private $type;

    /**
     * @var string
     */
    private $category;

    /**
     * @param string $type
     */
    public function setLogType($type)
    {
        $this->type = $type;
    }

    /**
     * @param string $category
     */
    public function setLogCategory($category)
    {
        $this->category = $category;
    }

    /**
     * @param string $category
     */
    public function setLogSource($source)
    {
        $this->source = $source;
    }

    /**
     * @return string
     */
    public function getLogType()
    {
        if ('random' === $this->type) {
            return $this->randomLogType();
        }

        return $this->type;
    }

    /**
     * @return string
     */
    public function getLogCategory()
    {
        if ('random' === $this->category) {
            return $this->randomLogCategory();
        }

        return $this->category;
    }

    /**
     * @return string
     */
    public function getLogSource()
    {
        if ('random' === $this->source) {
            return $this->faker->sentence($nbWords = 3);
        }

        return $this->source;
    }

    /**
     * Donor definition
     *
     * @since 1.0.0
     * @return array
     */
    public function definition()
    {
        return [
            'type' => $this->getLogType(),
            'message' => $this->faker->sentence($nbWords = 6),
            'category' => $this->getLogCategory(),
            'source' => $this->getLogSource(),
            'context' => [
                'Info' => $this->faker->sentence($nbWords = 6),
            ],
        ];
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit