HEX
Server: Apache
System: Linux webm013.cluster123.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: lesanew (165608)
PHP: 8.3.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/lesanew/www/wp-content/plugins/neobeat-core/inc/icons/helper.php
<?php

if ( ! function_exists( 'neobeat_core_include_icons' ) ) {
	/**
	 * Function that includes icons
	 */
	function neobeat_core_include_icons() {
		
		foreach ( glob( NEOBEAT_CORE_INC_PATH . '/icons/*/include.php' ) as $icon_pack ) {
			$is_disabled = neobeat_core_performance_get_option_value( dirname( $icon_pack ), 'neobeat_core_performance_icon_pack_' );
			
			if ( empty( $is_disabled ) ) {
				include_once $icon_pack;
			}
		}
	}
	
	add_action( 'qode_framework_action_before_icons_register', 'neobeat_core_include_icons' );
}