PATH:
home
/
letacommog
/
www
/
wp-content
/
plugins
/
popup-maker
/
classes
<?php class PUM_Upsell { public static function init() { add_filter( 'pum_popup_close_settings_fields', array( __CLASS__, 'fi_promotion' ) ); add_filter( 'pum_popup_targeting_settings_fields', array( __CLASS__, 'atc_promotion' ) ); } public static function fi_promotion( $fields ) { if ( pum_extension_enabled( 'forced-interaction' ) ) { return $fields; } ob_start(); ?> <div class="pum-upgrade-tip"> <img src="<?php echo Popup_Maker::$URL; ?>/assets/images/upsell-icon-forced-interaction.png" /> <?php printf( _x( 'Want to disable the close button? Check out %sForced Interaction%s!', '%s represent the opening & closing link html', 'popup-maker' ), '<a href="https://wppopupmaker.com/extensions/forced-interaction/?utm_source=plugin-theme-editor&utm_medium=text-link&utm_campaign=Upsell&utm_content=close-button-settings" target="_blank">', '</a>' ); ?> </div> <?php $html = ob_get_clean(); $key = key( $fields ); $fields[ $key ]['fi_promotion'] = array( 'type' => 'html', 'content' => $html, 'priority' => 30, ); return $fields; } public static function atc_promotion( $fields ) { if ( pum_extension_enabled( 'advanced-targetng-conditions' ) ) { return $fields; } ob_start(); ?> <div class="pum-upgrade-tip"> <img src="<?php echo Popup_Maker::$URL; ?>/assets/images/logo.png" height="28" /> <?php printf( __( 'Need more %sadvanced targeting%s options?', 'popup-maker' ), '<a href="https://wppopupmaker.com/extensions/advanced-targeting-conditions/?utm_campaign=Upsell&utm_source=plugin-popup-editor&utm_medium=text-link&utm_content=conditions-editor" target="_blank">', '</a>' ); ?> </div> <?php $html = ob_get_clean(); $key = key( $fields ); $fields[ $key ]['atc_promotion'] = array( 'type' => 'html', 'content' => $html, 'priority' => 30, ); return $fields; } }
[+]
..
[-] Helpers.php
[edit]
[-] Licensing.php
[edit]
[-] Newsletters.php
[edit]
[-] Triggers.php
[edit]
[+]
Newsletter
[-] Admin.php
[edit]
[-] Types.php
[edit]
[-] Conditions.php
[edit]
[-] Logging.php
[edit]
[-] Popup.php
[edit]
[-] ListTable.php
[edit]
[-] Deactivator.php
[edit]
[+]
DB
[-] Cookies.php
[edit]
[-] Shortcodes.php
[edit]
[-] Integrations.php
[edit]
[-] Analytics.php
[edit]
[-] Upsell.php
[edit]
[-] Ajax.php
[edit]
[+]
Interface
[-] GA.php
[edit]
[-] Upgrades.php
[edit]
[+]
Site
[-] DataStorage.php
[edit]
[-] Freemius.php
[edit]
[-] Previews.php
[edit]
[+]
Model
[+]
Admin
[+]
Extension
[+]
Batch
[-] Options.php
[edit]
[+]
Utils
[-] Popups.php
[edit]
[+]
Shortcode
[+]
Upgrade
[+]
Abstract
[-] Shortcode.php
[edit]
[-] AssetCache.php
[edit]
[-] Activator.php
[edit]
[-] Site.php
[edit]
[-] Cache.php
[edit]
[-] ConditionCallbacks.php
[edit]
[-] Privacy.php
[edit]