![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/themes/kicker/plugins/trx_updater/ |
<?php /* ThemeREX Updater support functions ------------------------------------------------------------------------------- */ // Theme init priorities: // 9 - register other filters (for installer, etc.) if ( ! function_exists( 'kicker_trx_updater_theme_setup9' ) ) { add_action( 'after_setup_theme', 'kicker_trx_updater_theme_setup9', 9 ); function kicker_trx_updater_theme_setup9() { if ( is_admin() ) { add_filter( 'kicker_filter_tgmpa_required_plugins', 'kicker_trx_updater_tgmpa_required_plugins', 8 ); add_filter( 'trx_updater_filter_original_theme_slug', 'kicker_trx_updater_original_theme_slug' ); } } } // Filter to add in the required plugins list // Priority 8 is used to add this plugin before all other plugins if ( ! function_exists( 'kicker_trx_updater_tgmpa_required_plugins' ) ) { //Handler of the add_filter( 'kicker_filter_tgmpa_required_plugins', 'kicker_trx_updater_tgmpa_required_plugins', 8 ); function kicker_trx_updater_tgmpa_required_plugins( $list = array() ) { if ( kicker_storage_isset( 'required_plugins', 'trx_updater' ) && kicker_storage_get_array( 'required_plugins', 'trx_updater', 'install' ) !== false && kicker_is_theme_activated() ) { $path = kicker_get_plugin_source_path( 'plugins/trx_updater/trx_updater.zip' ); if ( ! empty( $path ) || kicker_get_theme_setting( 'tgmpa_upload' ) ) { $list[] = array( 'name' => kicker_storage_get_array( 'required_plugins', 'trx_updater', 'title' ), 'slug' => 'trx_updater', 'source' => ! empty( $path ) ? $path : 'upload://trx_updater.zip', 'version' => '1.5.2', 'required' => false, ); } } return $list; } } // Check if plugin installed and activated if ( ! function_exists( 'kicker_exists_trx_updater' ) ) { function kicker_exists_trx_updater() { return defined( 'TRX_UPDATER_VERSION' ); } } // Return original theme slug if ( ! function_exists( 'kicker_trx_updater_original_theme_slug' ) ) { //Handler of the add_filter( 'trx_updater_filter_original_theme_slug', 'kicker_trx_updater_original_theme_slug' ); function kicker_trx_updater_original_theme_slug( $theme_slug ) { return apply_filters( 'kicker_filter_original_theme_slug', $theme_slug ); } }