ב הוא חיבור של הרב יהושע בועז שתוכנו מראי מקומות למקורותشسdggרות הל555ה התafhgfh
במסgרות ה gh//شی הוא חיבור של הרב יהושע בועז שתוכנו מראי מקומות למקורותהתנדaghhhhו12ין יעל, המעציfghfghfע
/
www-data
/
sites
/
naresh-newwordpress
/
wp-content
/
plugins
/
icegram
/
lite
/
notices
/
Upload FileeE
HOME
<?php /** * Admin View: Notice - Trial To Premium Offer */ if ( ! defined( 'ABSPATH' ) ) { exit; } global $post; $notice_optin_action = 'ig_trial_to_premium_redirect'; $optin_url = '?ig_dismiss_admin_notice=1&ig_option_name=trial_to_premium_notice&action=' . $notice_optin_action; $notice_optout_action = 'ig_trial_to_premium_dismiss'; $optout_url = '?ig_dismiss_admin_notice=1&ig_option_name=trial_to_premium_notice&action=' . $notice_optout_action; $remaining_trial_days = IG_Trial::get_remaining_trial_days(); $day_or_days = _n( 'day', 'days', $remaining_trial_days, 'icegram' ); $offer_type_to_show = 'trial'; $trial_expiration_message = ''; if ( $remaining_trial_days > 1 ) { /* translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days. */ $trial_expiration_message = sprintf( __( 'Your free trial is going to <strong>expire in %1$s %2$s</strong>.', 'icegram' ), $remaining_trial_days, $day_or_days ); } else { $trial_expiration_message = __( 'Today is the <strong>last day</strong> of your free trial.', 'icegram' ); } // Add default value to message. /* translators: 1. Discount % 2. Premium coupon code */ $discount_message = sprintf( __( 'Get flat %1$s discount if you upgrade now!<br/>Use coupon code %2$s during checkout.', 'icegram' ), '<strong>10%</strong>', '<span class="ig_upsale_premium_code">PREMIUM10</span>' ); $offer_cta_optin_text = __( 'Upgrade now', 'icegram' ); $offer_cta_optout_text = __( 'No, it\'s ok', 'icegram' ); // Override offer message with current active offer message. if ( ! empty( $discount_messages[ $offer_type_to_show ] ) ) { $discount_message = ! empty( $discount_messages[ $offer_type_to_show ]['message'] ) ? $discount_messages[ $offer_type_to_show ]['message'] : $discount_message; } /* translators: 1. Trial expiration message. 2. Discount message. */ $offer_message = sprintf( __( 'Hi there,<br/>Hope you are enjoying <strong>Icegram</strong>.<br/>%1$s<br/>Upgrade now to continue using the trial template <br/>%2$s', 'icegram' ), $trial_expiration_message, $discount_message ); ?> <div id="ig-trial-to-premium-notice" class="notice notice-success"> <p class="ig-upsale-message"> <?php echo wp_kses_post( $offer_message ); ?> <br/> <a href="<?php echo esc_url( $optin_url ); ?>" target="_blank" id="ig-optin-trial-to-premium-offer" class="ig-primary-button ig-trial-cta"> <?php echo esc_html( $offer_cta_optin_text ); ?> </a> <a href="<?php echo esc_url( $optout_url ); ?>" class="ig-title-button ig-trial-cta"> <?php echo esc_html( $offer_cta_optout_text ); ?> </a> </p> </div> <style type="text/css"> .ig-upsale-message{ line-height:1.6; } .ig-trial-cta{ padding:0.25rem 0.5rem; margin-top:0.5rem; } </style>