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/framework/DB/Tree/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/magento/framework/DB/Tree/Node.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Framework\DB\Tree;

use Magento\Framework\Exception\LocalizedException;

/**
 * @SuppressWarnings(PHPMD.UnusedPrivateField)
 *
 * @deprecated 102.0.0 Not used anymore.
 */
class Node
{
    /**
     * @var int
     */
    private $left;

    /**
     * @var int
     */
    private $right;

    /**
     * @var string|int
     */
    private $id;

    /**
     * @var string|int
     */
    private $pid;

    /**
     * @var int
     */
    private $level;

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

    /**
     * @var array
     */
    private $data;

    /**
     * @var bool
     *
     * @deprecated 102.0.0
     */
    public $hasChild = false;

    /**
     * @var float|int
     *
     * @deprecated 102.0.0
     */
    public $numChild = 0;

    /**
     * @param array $nodeData
     * @param array $keys
     * @throws LocalizedException
     *
     * @deprecated 102.0.0
     */
    public function __construct($nodeData, $keys)
    {
        if (empty($nodeData)) {
            throw new LocalizedException(
                new \Magento\Framework\Phrase('The node information is empty. Enter the information and try again.')
            );
        }
        if (empty($keys)) {
            throw new LocalizedException(
                new \Magento\Framework\Phrase("The encryption key can't be empty. Enter the key and try again.")
            );
        }

        $this->id = $nodeData[$keys['id']];
        $this->pid = $nodeData[$keys['pid']];
        $this->left = $nodeData[$keys['left']];
        $this->right = $nodeData[$keys['right']];
        $this->level = $nodeData[$keys['level']];

        $this->data = $nodeData;
        $a = $this->right - $this->left;
        if ($a > 1) {
            $this->hasChild = true;
            $this->numChild = ($a - 1) / 2;
        }
        return $this;
    }

    /**
     * @param string $name
     * @return null|array
     *
     * @deprecated 102.0.0
     */
    public function getData($name)
    {
        if (isset($this->data[$name])) {
            return $this->data[$name];
        } else {
            return null;
        }
    }

    /**
     * @return int
     *
     * @deprecated 102.0.0
     */
    public function getLevel()
    {
        return $this->level;
    }

    /**
     * @return int
     *
     * @deprecated 102.0.0
     */
    public function getLeft()
    {
        return $this->left;
    }

    /**
     * @return int
     *
     * @deprecated 102.0.0
     */
    public function getRight()
    {
        return $this->right;
    }

    /**
     * @return string|int
     *
     * @deprecated 102.0.0
     */
    public function getPid()
    {
        return $this->pid;
    }

    /**
     * @return string|int
     *
     * @deprecated 102.0.0
     */
    public function getId()
    {
        return $this->id;
    }

    /**
     * Return true if node has child
     *
     * @return bool
     *
     * @deprecated 102.0.0
     */
    public function isParent()
    {
        if ($this->right - $this->left > 1) {
            return true;
        } else {
            return false;
        }
    }
}

Spamworldpro Mini