HEX
Server: Apache
System: Linux server11 5.10.0-33-amd64 #1 SMP Debian 5.10.226-1 (2024-10-03) x86_64
User: web78 (5081)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/clients/client1/web78/web/wp-content/plugins/jetpack/modules/custom-css.php
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName

/**
 * Module Name: Custom CSS
 * Module Description: Adds options for CSS preprocessor use, disabling the theme's CSS, or custom image width.
 * Sort Order: 2
 * First Introduced: 1.7
 * Requires Connection: No
 * Auto Activate: No
 * Module Tags: Appearance
 * Feature: Appearance
 * Additional Search Queries: css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet
 */

if ( ! function_exists( 'jetpack_load_custom_css' ) ) {
	/**
	 * Load custom CSS
	 */
	function jetpack_load_custom_css() {
		include_once __DIR__ . '/custom-css/custom-css/preprocessors.php';
		include_once __DIR__ . '/custom-css/custom-css.php';
	}
}

if ( ! function_exists( 'custom_css_loaded' ) ) {
	/**
	 * Enable CSS module.
	 */
	function custom_css_loaded() {
		$message = sprintf(
			// translators: %s is a link to the WordPress.org documentation.
			__( 'Jetpack no longer supports Custom CSS. Read the WordPress.org documentation to learn how to apply custom styles to your site: %s', 'jetpack' ),
			'https://wordpress.org/documentation/article/styles-overview/#applying-custom-css'
		);

		_deprecated_hook( 'custom_css_loaded', 'jetpack-13.5', 'WordPress Custom CSS', esc_html( $message ) );

		Jetpack::enable_module_configurable( __FILE__ );
		add_filter( 'jetpack_module_configuration_url_custom-css', 'jetpack_custom_css_configuration_url' );
	}
}

if ( ! function_exists( 'jetpack_custom_css_configuration_url' ) ) {
	/**
	 * Overrides default configuration url
	 *
	 * @uses admin_url
	 *
	 * @param string $default_url - the default URL.
	 * @return string module settings URL
	 */
	function jetpack_custom_css_configuration_url( $default_url ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
		return Jetpack_Custom_CSS_Enhancements::customizer_link(
			array( 'return_url' => wp_get_referer() )
		);
	}
}

// phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
if ( ! apply_filters( 'jetpack_module_configurable_custom-css', null ) ) {
	add_action( 'jetpack_modules_loaded', 'custom_css_loaded' );

	jetpack_load_custom_css();
}