/home/arranoyd/energyclinic/wp-content/themes/bonbon/plugins/essential-grid/essential-grid.php
<?php
/* Essential Grid support functions
------------------------------------------------------------------------------- */
// Theme init priorities:
// 9 - register other filters (for installer, etc.)
if ( ! function_exists( 'bonbon_essential_grid_theme_setup9' ) ) {
add_action( 'after_setup_theme', 'bonbon_essential_grid_theme_setup9', 9 );
function bonbon_essential_grid_theme_setup9() {
if ( bonbon_exists_essential_grid() ) {
add_action( 'wp_enqueue_scripts', 'bonbon_essential_grid_frontend_scripts', 1100 );
add_action( 'trx_addons_action_load_scripts_front_essential_grid', 'bonbon_essential_grid_frontend_scripts', 10, 1 );
add_filter( 'bonbon_filter_merge_styles', 'bonbon_essential_grid_merge_styles' );
}
if ( is_admin() ) {
add_filter( 'bonbon_filter_tgmpa_required_plugins', 'bonbon_essential_grid_tgmpa_required_plugins' );
}
}
}
// Filter to add in the required plugins list
if ( ! function_exists( 'bonbon_essential_grid_tgmpa_required_plugins' ) ) {
//Handler of the add_filter('bonbon_filter_tgmpa_required_plugins', 'bonbon_essential_grid_tgmpa_required_plugins');
function bonbon_essential_grid_tgmpa_required_plugins( $list = array() ) {
if ( bonbon_storage_isset( 'required_plugins', 'essential-grid' ) && bonbon_storage_get_array( 'required_plugins', 'essential-grid', 'install' ) !== false && bonbon_is_theme_activated() ) {
$path = bonbon_get_plugin_source_path( 'plugins/essential-grid/essential-grid.zip' );
if ( ! empty( $path ) || bonbon_get_theme_setting( 'tgmpa_upload' ) ) {
$list[] = array(
'name' => bonbon_storage_get_array( 'required_plugins', 'essential-grid', 'title' ),
'slug' => 'essential-grid',
'source' => ! empty( $path ) ? $path : 'upload://essential-grid.zip',
'version' => '2.2.4.2',
'required' => false,
);
}
}
return $list;
}
}
// Check if plugin installed and activated
if ( ! function_exists( 'bonbon_exists_essential_grid' ) ) {
function bonbon_exists_essential_grid() {
return defined( 'EG_PLUGIN_PATH' ) || defined( 'ESG_PLUGIN_PATH' );
}
}
// Enqueue styles for frontend
if ( ! function_exists( 'bonbon_essential_grid_frontend_scripts' ) ) {
//Handler of the add_action( 'wp_enqueue_scripts', 'bonbon_essential_grid_frontend_scripts', 1100 );
//Handler of the add_action( 'trx_addons_action_load_scripts_front_essential_grid', 'bonbon_essential_grid_frontend_scripts', 10, 1 );
function bonbon_essential_grid_frontend_scripts( $force = false ) {
bonbon_enqueue_optimized( 'essential_grid', $force, array(
'css' => array(
'bonbon-essential-grid' => array( 'src' => 'plugins/essential-grid/essential-grid.css' ),
)
) );
}
}
// Merge custom styles
if ( ! function_exists( 'bonbon_essential_grid_merge_styles' ) ) {
//Handler of the add_filter('bonbon_filter_merge_styles', 'bonbon_essential_grid_merge_styles');
function bonbon_essential_grid_merge_styles( $list ) {
$list[ 'plugins/essential-grid/essential-grid.css' ] = false;
return $list;
}
}