HEX
Server: LiteSpeed
System: Linux premium321.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
User: paksjuts (1314)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/paksjuts/apkhoop.com/wp-content/plugins/vibes/init.php
<?php
/**
 * Initialization of globals.
 *
 * @package Bootstrap
 * @author  Pierre Lannoy <https://pierre.lannoy.fr/>.
 * @since   1.0.0
 */

define( 'VIBES_PRODUCT_NAME', 'Vibes' );
define( 'VIBES_PRODUCT_URL', 'https://github.com/Pierre-Lannoy/wp-vibes' );
define( 'VIBES_PRODUCT_SHORTNAME', 'Vibes' );
define( 'VIBES_PRODUCT_ABBREVIATION', 'vibes' );
define( 'VIBES_SLUG', 'vibes' );
define( 'VIBES_VERSION', '2.2.1' );
define( 'VIBES_API_VERSION', '1' );
define( 'VIBES_CODENAME', '"-"' );

define( 'VIBES_CDN_AVAILABLE', true );


if ( ! defined( 'PERFOO_ALLOWED_HTML_FOR_DASHBOARD' ) ) {
	global $allowedposttags;
	$allowed        = $allowedposttags;
	$allowed['img'] = array_merge(
		$allowed['img'],
		[
			'style' => true,
		]
	);
	$extra          = [
		'script' => [],
		'option' => [
			'class'    => true,
			'style'    => true,
			'name'     => true,
			'id'       => true,
			'value'    => true,
			'selected' => true,
			'disabled' => true,
		],
		'select' => [
			'class'       => true,
			'style'       => true,
			'name'        => true,
			'id'          => true,
			'data'        => true,
			'placeholder' => true,
			'disabled'    => true,
		],
		'input'  => [
			'class'       => true,
			'style'       => true,
			'name'        => true,
			'id'          => true,
			'value'       => true,
			'data'        => true,
			'placeholder' => true,
			'disabled'    => true,
			'type'        => true,
			'checked'     => true,
			'step'        => true,
			'min'         => true,
			'max'         => true,

		],
	];
	add_filter( 'safe_style_css',
		function( $allowed ) {
			return array_merge( $allowed, [ 'opacity' ] );
		});
	define( 'PERFOO_ALLOWED_HTML_FOR_DASHBOARD', array_merge( $allowed, $extra ) );
}

if ( ! defined( 'PERFOO_ALLOWED_PROTOCOLS_FOR_DASHBOARD' ) ) {
	define( 'PERFOO_ALLOWED_PROTOCOLS_FOR_DASHBOARD', array_merge( wp_allowed_protocols(), [ 'data' ] ) );
}