File: /var/www/epamokos.kaunokolegija.lt/wp-content/plugins/wp-user-frontend/includes/Free/Pro_Prompt.php
<?php
namespace WeDevs\Wpuf\Free;
/**
* Free to Pro prompter class
*/
class Pro_Prompt {
public static function get_pro_prompt() {
echo wp_kses_post( '<h3 class="wpuf-pro-text-alert">' . self::get_pro_prompt_text() . '</h3>' );
}
public static function get_pro_url() {
return 'https://wedevs.com/wp-user-frontend-pro/pricing/?utm_source=freeplugin&utm_medium=prompt&utm_term=wpuf_free_plugin&utm_content=textlink&utm_campaign=pro_prompt';
}
public static function get_pro_prompt_text() {
return sprintf( 'Available in <a href="%s" target="_blank">Pro Version</a>', self::get_pro_url() );
}
/**
* Get the upgrade to pro url from the PRO Prompts
*
* @since 3.6.0
*
* @return string
*/
public static function get_upgrade_to_pro_popup_url() {
return esc_url( 'https://wedevs.com/wp-user-frontend-pro/pricing/?utm_source=wpdashboard&utm_medium=popup' );
}
}