Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion reference/dom/dom/dom-element.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: ae7db14ea8cb8f3041e114f0ef865d86a95f72d6 Maintainer: sergey Status: ready -->
<!-- EN-Revision: 34314b7c6eab4d9b7efabd42154b38fcc5db1fef Maintainer: sergey Status: ready -->
<!-- Reviewed: no -->
<reference xml:id="class.dom-element" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>Класс Dom\Element</title>
Expand Down Expand Up @@ -122,11 +122,22 @@
<type class="union"><type>Dom\Element</type><type>null</type></type>
<varname linkend="dom-element.props.nextelementsibling">nextElementSibling</varname>
</fieldsynopsis>
<fieldsynopsis>
<modifier>public</modifier>
<modifier>readonly</modifier>
<type>Dom\HTMLCollection</type>
<varname linkend="dom-element.props.children">children</varname>
</fieldsynopsis>
<fieldsynopsis>
<modifier>public</modifier>
<type>string</type>
<varname linkend="dom-element.props.innerhtml">innerHTML</varname>
</fieldsynopsis>
<fieldsynopsis>
<modifier>public</modifier>
<type>string</type>
<varname linkend="dom-element.props.outerhtml">outerHTML</varname>
</fieldsynopsis>
<fieldsynopsis>
<modifier>public</modifier>
<type>string</type>
Expand Down Expand Up @@ -226,12 +237,26 @@
<xi:fallback/>
</xi:include>
</varlistentry>
<varlistentry xml:id="dom-element.props.children">
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('dom-parentnode.props.children')/*)">
<xi:fallback/>
</xi:include>
</varlistentry>
<varlistentry xml:id="dom-element.props.innerhtml">
<term><varname>innerHTML</varname></term>
<listitem>
<simpara>Внутренний HTML (или XML для XML-документов) элемента.</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id="dom-element.props.outerhtml">
<term><varname>outerHTML</varname></term>
<listitem>
<simpara>
The outer HTML (or XML for XML documents) of the element, including the
element itself. Available as of PHP 8.5.0.
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id="dom-element.props.substitutednodevalue">
<term><varname>substitutedNodeValue</varname></term>
<listitem>
Expand Down
24 changes: 23 additions & 1 deletion reference/dom/dom/dom-parentnode.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: ae7db14ea8cb8f3041e114f0ef865d86a95f72d6 Maintainer: sergey Status: ready -->
<!-- EN-Revision: 34314b7c6eab4d9b7efabd42154b38fcc5db1fef Maintainer: sergey Status: ready -->
<!-- Reviewed: no -->
<reference xml:id="class.dom-parentnode" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>Интерфейс Dom\ParentNode</title>
Expand All @@ -23,6 +23,14 @@
<interfacename>Dom\ParentNode</interfacename>
</oointerface>

<classsynopsisinfo role="comment">&Properties;</classsynopsisinfo>
<fieldsynopsis>
<modifier>public</modifier>
<modifier>readonly</modifier>
<type>Dom\HTMLCollection</type>
<varname linkend="dom-parentnode.props.children">children</varname>
</fieldsynopsis>

<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.dom-parentnode')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[@role='Dom\\ParentNode'])">
<xi:fallback/>
Expand All @@ -31,6 +39,20 @@

</section>

<section xml:id="dom-parentnode.props">
&reftitle.properties;
<variablelist>
<varlistentry xml:id="dom-parentnode.props.children">
<term><varname>children</varname></term>
<listitem>
<simpara>
Объект <classname>Dom\HTMLCollection</classname>, содержащий все дочерние элементы данного узла. Доступно начиная с PHP 8.5.0.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</section>

</partintro>

&reference.dom.dom.entities.parentnode;
Expand Down
Loading