1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
documenttype.php
См. документацию.
1<?php
2namespace Bitrix\Main\Web\DOM;
3
4class DocumentType extends Node
5{
6 public function __construct()
7 {
8 parent::__construct();
9 $this->nodeType = self::DOCUMENT_TYPE_NODE;
10 $this->nodeName = '#document';
11 }
12
13 public function getTextContent()
14 {
15 return null;
16 }
17}
Определения node.php:5