Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/magento/module-deploy/Package/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/magento/module-deploy/Package/PackageFile.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Deploy\Package;

use Magento\Framework\View\Asset;
use Magento\Framework\View\Asset\Repository;

/**
 * Deployment Package File class
 *
 * @api
 */
class PackageFile extends Asset
{
    /**
     * @var Package
     */
    private $package;

    /**
     * @var Package
     */
    private $origPackage;

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

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

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

    /**
     * @param Package $package
     * @return bool
     */
    public function setPackage(Package $package)
    {
        $this->package = $package;
        if ($this->origPackage === null) {
            $this->origPackage = $package;
        }

        $package->addFile($this);
        $package->addFileToMap($this);

        return true;
    }

    /**
     * @return Package
     */
    public function getPackage()
    {
        return $this->package;
    }

    /**
     * @return Package
     */
    public function getOrigPackage()
    {
        return $this->origPackage;
    }

    /**
     * @param string $name
     * @return bool
     */
    public function setDeployedFileName($name)
    {
        $this->deployedFileName = $name;
        return true;
    }

    /**
     * @return string
     */
    public function getDeployedFileName()
    {
        return $this->deployedFileName;
    }

    /**
     * @param string $name
     * @return bool
     */
    public function setDeployedFilePath($name)
    {
        $this->deployedFilePath = $name;
        return true;
    }

    /**
     * @return string
     */
    public function getDeployedFilePath()
    {
        return $this->deployedFilePath;
    }

    /**
     * @return string
     */
    public function getDeployedFileId()
    {
        if ($this->getModule()) {
            return $this->getModule() . Repository::FILE_ID_SEPARATOR . $this->getDeployedFileName();
        }
        return $this->getDeployedFileName();
    }

    /**
     * @return string
     */
    public function getContent()
    {
        return $this->content;
    }

    /**
     * @param string $content
     * @return bool
     */
    public function setContent($content)
    {
        $this->content = $content;
        return true;
    }

    /**
     * @param string $area
     * @return bool
     */
    public function setArea($area)
    {
        $this->area = $area;
        return true;
    }

    /**
     * @param string $theme
     * @return bool
     */
    public function setTheme($theme)
    {
        $this->theme = $theme;
        return true;
    }

    /**
     * @param string $locale
     * @return bool
     */
    public function setLocale($locale)
    {
        $this->locale = $locale;
        return true;
    }

    /**
     * @param string $module
     * @return bool
     */
    public function setModule($module)
    {
        $this->module = $module;
        return true;
    }
}

Spamworldpro Mini