updated plugin Menu Icons version 0.13.23

This commit is contained in:
2026-06-03 21:29:09 +00:00
committed by Gitium
parent af21e84842
commit 44cba94bcb
38 changed files with 1556 additions and 546 deletions

View File

@ -64,6 +64,7 @@ final class Loader {
'announcements',
'featured_plugins',
'float_widget',
'migrator',
];
/**
* Holds the labels for the modules.
@ -72,10 +73,11 @@ final class Loader {
*/
public static $labels = [
'announcements' => [
'hurry_up' => 'Hurry up! Only %s left.',
'sale_live' => 'Themeisle Black Friday Sale is Live!',
'learn_more' => 'Learn more',
'max_savings' => 'Enjoy Maximum Savings on %s',
'notice_link_label' => 'See the deals',
'max_savings' => 'Best WordPress Black Friday deals of %s — themes, plugins, hosting. Curated by the Themeisle team.',
'black_friday' => 'Black Friday Sale',
'time_left' => '%s left',
'plugin_meta_message' => 'Black Friday Sale - 60% OFF',
],
'compatibilities' => [
'notice' => '%s requires a newer version of %s. Please %supdate%s %s %s to the latest version.',
@ -108,10 +110,14 @@ final class Loader {
'valid' => 'Valid',
'invalid' => 'Invalid',
'notice' => 'Enter your license from %s purchase history in order to get %s updates',
'expired' => 'Your %s\'s License Key has expired. In order to continue receiving support and software updates you must %srenew%s your license key.',
'expired' => '%s license expired',
'expired_date' => 'Expired on %s',
'expired_notice' => 'Your current setup continues working, but premium features are disabled and you\'re no longer receive updates - including critical patches - or support.',
'inactive' => 'In order to benefit from updates and support for %s, please add your license code from your %spurchase history%s and validate it %shere%s.',
'no_activations' => 'No more activations left for %s. You need to upgrade your plan in order to use %s on more websites. If you need assistance, please get in touch with %s staff.',
'renew_license' => 'Renew License',
'learn_more' => 'Learn More',
],
'promotions' => [
'recommended' => 'Recommended by %s',
@ -172,6 +178,12 @@ final class Loader {
'dismisscta' => 'Dismiss this notice.',
'message' => 'Enhance your donation page with WP Full Pay—create custom Stripe forms for one-time and recurring donations, manage transactions easily, and boost support with a seamless setup.',
],
'masteriyo' => [
'gotodash' => 'Go to Masteriyo Dashboard',
'install' => 'Install Masteriyo',
'dismisscta' => 'Dismiss this notice.',
'message' => 'Transform your site into a learning hub with Masteriyo LMS. Build engaging courses with intuitive tools, track student progress effortlessly, and grow your education business with powerful marketing features and seamless payment integration.',
],
],
'welcome' => [
'ctan' => 'No, thanks.',
@ -243,9 +255,9 @@ final class Loader {
'cta' => 'Rollback to v%s',
],
'logger' => [
'notice' => 'Do you enjoy <b>{product}</b>? Become a contributor by opting in to our anonymous data tracking. We guarantee no sensitive data is collected.',
'cta_y' => 'Sure, I would love to help.',
'cta_n' => 'No, thanks.',
'notice' => 'Help improve <b>{product}</b> by sharing anonymous usage data about your setup. No personal data collected.',
'cta_y' => 'Count me in',
'cta_n' => 'No thanks',
],
'about_us' => [
'title' => 'About Us',
@ -325,10 +337,7 @@ final class Loader {
* Initialize the sdk logic.
*/
public static function init() {
/**
* This filter can be used to localize the labels inside each product.
*/
self::$labels = apply_filters( 'themeisle_sdk_labels', self::$labels );
self::localize_labels();
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Loader ) ) {
self::$instance = new Loader();
$modules = array_merge( self::$available_modules, apply_filters( 'themeisle_sdk_modules', [] ) );
@ -338,8 +347,92 @@ final class Loader {
}
}
self::$available_modules = $modules;
add_action( 'themeisle_sdk_first_activation', array( __CLASS__, 'activate' ) );
}
}
/**
* Localize the labels.
*/
public static function localize_labels() {
$originals = self::$labels;
$all_translations = [];
global $wp_filter;
if ( isset( $wp_filter['themeisle_sdk_labels'] ) ) {
foreach ( $wp_filter['themeisle_sdk_labels']->callbacks as $priority => $hooks ) {
foreach ( $hooks as $hook ) {
// Each callback gets fresh originals, not previous callback's output
$result = call_user_func( $hook['function'], $originals );
$all_translations[] = $result;
}
}
// Remove the filter so it doesn't run again via apply_filters
remove_all_filters( 'themeisle_sdk_labels' );
}
// Merge all results, first real translation wins
self::$labels = self::merge_all_translations( $originals, $all_translations );
}
/**
* Merge all translations.
*
* @param array $originals The original labels.
* @param array $all_translations The all translations.
*
* @return array The merged labels.
*/
private static function merge_all_translations( $originals, $all_translations ) {
$result = $originals;
foreach ( $all_translations as $translations ) {
$result = self::merge_if_translated( $result, $translations, $originals );
}
return $result;
}
/**
* Merge if translated.
*
* @param array $current The current labels.
* @param array $new The new labels.
* @param array $originals The original labels.
* @return array The merged labels.
*/
private static function merge_if_translated( $current, $new, $originals ) {
foreach ( $new as $key => $value ) {
if ( ! isset( $originals[ $key ] ) ) {
// New key, accept it
if ( ! isset( $current[ $key ] ) ) {
$current[ $key ] = $value;
}
continue;
}
if ( is_array( $value ) && is_array( $originals[ $key ] ) ) {
$current[ $key ] = self::merge_if_translated(
$current[ $key ],
$value,
$originals[ $key ]
);
} else {
// Only accept if:
// 1. New value is actually translated (differs from original)
// 2. Current value is NOT already translated
$is_new_translated = ( $value !== $originals[ $key ] );
$is_current_untranslated = ( $current[ $key ] === $originals[ $key ] );
if ( $is_new_translated && $is_current_untranslated ) {
$current[ $key ] = $value;
}
}
}
return $current;
}
/**
* Get cache token used in API requests.
@ -384,6 +477,28 @@ final class Loader {
return self::$instance;
}
/**
* Activate the product routine.
*
* @param string $file The base file of the product.
*
* @return void
*/
public static function activate( $file ) {
$dirname = trailingslashit( dirname( ( $file ) ) );
if ( ! file_exists( $dirname . '_reference.php' ) ) {
return;
}
$reference_data = require_once $dirname . '_reference.php';
if ( ! is_array( $reference_data ) ||
! isset( $reference_data['key'] ) ||
! isset( $reference_data['value'] ) ||
! preg_match( '/^[a-zA-Z0-9_]+_reference_key$/', $reference_data['key'] ) ) {
return;
}
add_option( $reference_data['key'], sanitize_key( $reference_data['value'] ) );
}
/**
* Get all registered modules by the SDK.
*