Linux server19.dn-server.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 46.209.20.154 & Your IP : 216.73.216.212
Domains :
Cant Read [ /etc/named.conf ]
User : emadteam
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
emadteam /
.trash /
wp-includes /
block-supports /
Delete
Unzip
Name
Size
Permission
Date
Action
align.php
1.67
KB
-rw-r--r--
2023-08-10 16:48
aria-label.php
1.57
KB
-rw-r--r--
2025-03-04 13:06
background.php
4.05
KB
-rw-r--r--
2025-09-10 20:27
block-style-variations.php
9.2
KB
-rw-r--r--
2024-12-21 17:23
block-visibility.php
854
B
-rw-r--r--
2025-11-24 18:30
border.php
6.27
KB
-rw-r--r--
2023-09-29 10:20
colors.php
5.81
KB
-rw-r--r--
2023-09-29 10:20
custom-classname.php
1.64
KB
-rw-r--r--
2023-08-10 16:48
dimensions.php
5.28
KB
-rw-r--r--
2024-01-31 02:54
duotone.php
2.67
KB
-rw-r--r--
2024-06-04 01:48
elements.php
8.46
KB
-rw-r--r--
2024-05-03 05:25
generated-classname.php
1.7
KB
-rw-r--r--
2023-08-10 16:48
layout.php
39
KB
-rw-r--r--
2025-10-17 23:54
position.php
4.24
KB
-rw-r--r--
2023-09-26 13:47
settings.php
4.52
KB
-rw-r--r--
2023-09-26 13:47
shadow.php
2.04
KB
-rw-r--r--
2024-06-03 23:36
spacing.php
2.81
KB
-rw-r--r--
2023-09-26 13:47
typography.php
29.08
KB
-rw-r--r--
2025-11-17 10:50
utils.php
1011
B
-rw-r--r--
2023-08-18 17:29
Save
Rename
<?php /** * Aria label block support flag. * * @package WordPress * @since 6.8.0 */ /** * Registers the aria-label block attribute for block types that support it. * * @since 6.8.0 * @access private * * @param WP_Block_Type $block_type Block Type. */ function wp_register_aria_label_support( $block_type ) { $has_aria_label_support = block_has_support( $block_type, array( 'ariaLabel' ), false ); if ( ! $has_aria_label_support ) { return; } if ( ! $block_type->attributes ) { $block_type->attributes = array(); } if ( ! array_key_exists( 'ariaLabel', $block_type->attributes ) ) { $block_type->attributes['ariaLabel'] = array( 'type' => 'string', ); } } /** * Add the aria-label to the output. * * @since 6.8.0 * @access private * * @param WP_Block_Type $block_type Block Type. * @param array $block_attributes Block attributes. * * @return array Block aria-label. */ function wp_apply_aria_label_support( $block_type, $block_attributes ) { if ( ! $block_attributes ) { return array(); } $has_aria_label_support = block_has_support( $block_type, array( 'ariaLabel' ), false ); if ( ! $has_aria_label_support ) { return array(); } $has_aria_label = array_key_exists( 'ariaLabel', $block_attributes ); if ( ! $has_aria_label ) { return array(); } return array( 'aria-label' => $block_attributes['ariaLabel'] ); } // Register the block support. WP_Block_Supports::get_instance()->register( 'aria-label', array( 'register_attribute' => 'wp_register_aria_label_support', 'apply' => 'wp_apply_aria_label_support', ) );