?AlkantarClanX12
| Current Path : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/icons/ |
| Current File : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/icons/helper.php |
<?php
if ( ! function_exists( 'drew_core_include_icons' ) ) {
/**
* Function that includes icons
*/
function drew_core_include_icons() {
foreach ( glob( DREW_CORE_INC_PATH . '/icons/*/include.php' ) as $icon_pack ) {
$is_disabled = drew_core_performance_get_option_value( dirname( $icon_pack ), 'drew_core_performance_icon_pack_' );
if ( empty( $is_disabled ) ) {
include_once $icon_pack;
}
}
}
add_action( 'qode_framework_action_before_icons_register', 'drew_core_include_icons' );
}