Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
themes
/
beautique
/
plugins
/
trx_updater
/
✏️
Editing: trx_updater.php
<?php /* ThemeREX Updater support functions ------------------------------------------------------------------------------- */ // Theme init priorities: // 9 - register other filters (for installer, etc.) if ( ! function_exists( 'beautique_trx_updater_theme_setup9' ) ) { add_action( 'after_setup_theme', 'beautique_trx_updater_theme_setup9', 9 ); function beautique_trx_updater_theme_setup9() { if ( is_admin() ) { add_filter( 'beautique_filter_tgmpa_required_plugins', 'beautique_trx_updater_tgmpa_required_plugins', 8 ); add_filter( 'trx_updater_filter_original_theme_slug', 'beautique_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( 'beautique_trx_updater_tgmpa_required_plugins' ) ) { //Handler of the add_filter( 'beautique_filter_tgmpa_required_plugins', 'beautique_trx_updater_tgmpa_required_plugins', 8 ); function beautique_trx_updater_tgmpa_required_plugins( $list = array() ) { if ( beautique_storage_isset( 'required_plugins', 'trx_updater' ) && beautique_storage_get_array( 'required_plugins', 'trx_updater', 'install' ) !== false && beautique_is_theme_activated() ) { $path = beautique_get_plugin_source_path( 'plugins/trx_updater/trx_updater.zip' ); if ( ! empty( $path ) || beautique_get_theme_setting( 'tgmpa_upload' ) ) { $list[] = array( 'name' => beautique_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( 'beautique_exists_trx_updater' ) ) { function beautique_exists_trx_updater() { return defined( 'TRX_UPDATER_VERSION' ); } } // Return original theme slug if ( ! function_exists( 'beautique_trx_updater_original_theme_slug' ) ) { //Handler of the add_filter( 'trx_updater_filter_original_theme_slug', 'beautique_trx_updater_original_theme_slug' ); function beautique_trx_updater_original_theme_slug( $theme_slug ) { return apply_filters( 'beautique_filter_original_theme_slug', $theme_slug ); } }
💾 Save
❌ Cancel