HEX
Server: Apache
System: Linux webd003.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/laretediclo/wp-content/themes/kicker/plugins/powerkit/powerkit.php
<?php
/* PowerKit support functions
------------------------------------------------------------------------------- */

// Theme init priorities:
// 9 - register other filters (for installer, etc.)
if ( ! function_exists( 'kicker_powerkit_theme_setup9' ) ) {
	add_action( 'after_setup_theme', 'kicker_powerkit_theme_setup9', 9 );
	function kicker_powerkit_theme_setup9() {
		if ( is_admin() ) {
			add_filter( 'kicker_filter_tgmpa_required_plugins', 'kicker_powerkit_tgmpa_required_plugins' );
		}
	}
}

// Filter to add in the required plugins list
if ( ! function_exists( 'kicker_powerkit_tgmpa_required_plugins' ) ) {
	//Handler of the add_filter('kicker_filter_tgmpa_required_plugins',	'kicker_powerkit_tgmpa_required_plugins');
	function kicker_powerkit_tgmpa_required_plugins( $list = array() ) {
		if ( kicker_storage_isset( 'required_plugins', 'powerkit' ) && kicker_storage_get_array( 'required_plugins', 'powerkit', 'install' ) !== false ) {
			$list[] = array(
				'name'     => kicker_storage_get_array( 'required_plugins', 'powerkit', 'title' ),
				'slug'     => 'powerkit',
				'required' => false,
			);
		}
		return $list;
	}
}

// Check if plugin installed and activated
if ( ! function_exists( 'kicker_exists_powerkit' ) ) {
	function kicker_exists_powerkit() {
		return class_exists( 'Powerkit' );
	}
}