/
home
/
vianto5
/
ceibaresidencial.mx
/
wp-includes
/
html-api
/
/home/vianto5/ceibaresidencial.mx/wp-includes/html-api
mkdir
upload
Name
Size
Mode
Actions
1srtbyv/
-
0755
rm
aezcujd/
-
0755
rm
ajrdopu/
-
0755
rm
asomfgz/
-
0755
rm
awrjtix/
-
0755
rm
bganmyu/
-
0755
rm
bljkmts/
-
0755
rm
bndrwiz/
-
0755
rm
bsqvenx/
-
0755
rm
btgoxmw/
-
0755
rm
cqwzpyr/
-
0755
rm
ebsuplk/
-
0755
rm
ekjagqr/
-
0755
rm
exnjwhg/
-
0755
rm
fbygd1l/
-
0755
rm
fmptiuc/
-
0755
rm
fnibpjv/
-
0755
rm
foyptar/
-
0755
rm
gfhdopr/
-
0755
rm
grpfncy/
-
0755
rm
gzhuxdn/
-
0755
rm
hgvkcie/
-
0755
rm
htbquoa/
-
0755
rm
hwxuqae/
-
0755
rm
hxgoyjt/
-
0755
rm
iduthwn/
-
0755
rm
ihcsong/
-
0755
rm
iuknzrv/
-
0755
rm
jkueqhy/
-
0755
rm
jmutbhs/
-
0755
rm
jtwkshc/
-
0755
rm
juhqlyx/
-
0755
rm
kgtbxvm/
-
0755
rm
kpcnwuy/
-
0755
rm
lzksecy/
-
0755
rm
miwfoh1/
-
0755
rm
mjlwefd/
-
0755
rm
mplfgre/
-
0755
rm
ndowk1c/
-
0755
rm
nkeajwx/
-
0755
rm
ogikalw/
-
0755
rm
oiqwbzp/
-
0755
rm
oknljim/
-
0755
rm
oymjdxw/
-
0755
rm
prbiuqy/
-
0755
rm
ptuvhan/
-
0755
rm
pwkdnrc/
-
0755
rm
pxrytgd/
-
0755
rm
qebhsdv/
-
0755
rm
qipufbx/
-
0755
rm
qjntgbo/
-
0755
rm
qmpbhuc/
-
0755
rm
qxhjbkp/
-
0755
rm
rtwgcna/
-
0755
rm
rycehtk/
-
0755
rm
rznd1ui/
-
0755
rm
spyovrd/
-
0755
rm
szoxrau/
-
0755
rm
tgowyvq/
-
0755
rm
utpwhmg/
-
0755
rm
uyvetwb/
-
0755
rm
v1yzuqj/
-
0755
rm
wpulrsz/
-
0755
rm
wxuymib/
-
0755
rm
xhzgecd/
-
0755
rm
xjtnqve/
-
0755
rm
xoskhal/
-
0755
rm
xweklda/
-
0755
rm
yjsd1lo/
-
0755
rm
ykizgwo/
-
0755
rm
ykpeumi/
-
0755
rm
ytszcpr/
-
0755
rm
zlmvgxf/
-
0755
rm
znpjsgk/
-
0755
rm
zomruad/
-
0755
rm
zrlywhq/
-
0755
rm
zstegya/
-
0755
rm
zutiwml/
-
0755
rm
.htaccess
178
0644
edit
dl
rm
class-wp-html-active-formatting-elements.php
7276
0644
edit
dl
rm
class-wp-html-attribute-token.php
2865
0644
edit
dl
rm
class-wp-html-decoder.php
20326
0644
edit
dl
rm
class-wp-html-doctype-info.php
25509
0644
edit
dl
rm
class-wp-html-open-elements.php
22526
0644
edit
dl
rm
class-wp-html-processor-state.php
11426
0644
edit
dl
rm
class-wp-html-processor.php
213919
0644
edit
dl
rm
class-wp-html-span.php
1099
0644
edit
dl
rm
class-wp-html-stack-event.php
1653
0644
edit
dl
rm
class-wp-html-tag-processor.php
178823
0644
edit
dl
rm
class-wp-html-text-replacement.php
1409
0644
edit
dl
rm
class-wp-html-token.php
3415
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/ceibaresidencial.mx/wp-includes/html-api/class-wp-html-stack-event.php
(1653B)
<?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 * @ignore * * @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