Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/vendor/wikimedia/parsoid/src/NodeData/DataBag.php
Ðазад
<?php declare( strict_types = 1 ); namespace Wikimedia\Parsoid\NodeData; use Wikimedia\Parsoid\Core\PageBundle; class DataBag { /** * @var NodeData[] A map of node data-object-id ids to data objects. * This map is used during DOM processing to avoid having to repeatedly * json-parse/json-serialize data-parsoid and data-mw attributes. * This map is initialized when a DOM is created/parsed/refreshed. */ private array $dataObject = []; /** @var int An id counter for this document used for the dataObject map */ private int $nodeId = 0; /** @var PageBundle the page bundle object into which all data-parsoid and data-mw * attributes will be extracted to for pagebundle API requests. */ private $pageBundle; /** * FIXME: Figure out a decent interface for updating these depths * without needing to import the various util files. * * Map of start/end meta tag tree depths keyed by about id */ public array $transclusionMetaTagDepthMap = []; public function __construct() { $this->pageBundle = new PageBundle( '', [ "counter" => -1, "ids" => [] ], [ "ids" => [] ] ); } /** * Return this document's pagebundle object * @return PageBundle */ public function getPageBundle(): PageBundle { return $this->pageBundle; } /** * Get the data object for the node with data-object-id 'nodeId'. * This will return null if a non-existent nodeId is provided. * * @param int $nodeId * @return NodeData|null */ public function getObject( int $nodeId ): ?NodeData { return $this->dataObject[$nodeId] ?? null; } /** * Stash the data and return an id for retrieving it later * @param NodeData $data * @return int */ public function stashObject( NodeData $data ): int { $nodeId = $this->nodeId++; $this->dataObject[$nodeId] = $data; return $nodeId; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка