File: /var/www/intranet.kauko.lt/wp-content/plugins/employee-directory/includes/admin/store-functions.php
<?php
/**
* Add-On Page Functions
*
* @package EMD
* @copyright Copyright (c) 2014, Emarket Design
* @since WPAS 4.2
*/
if (!defined('ABSPATH')) exit;
/**
* Show emdplugins plugins and extensions
*
* @param string $appd
* @since WPAS 4.2
*
* @return html page content
*/
if (!function_exists('emd_display_store')) {
function emd_display_store($appd) {
global $title;
wp_enqueue_script('jquery');
ob_start(); ?>
<div class="wrap">
<h2><?php echo esc_html($title);?> — <a href="https://emdplugins.com/plugins?pk_source=plugin-addons-page&pk_medium=plugin&pk_campaign=<?php echo esc_attr($appd);?>-addonspage&pk_content=browseall" class="button-primary" title="<?php esc_html_e( 'Browse All', 'empd-com' ); ?>" target="_blank"><?php esc_html_e( 'Browse All', 'empd-com' ); ?></a>
</h2>
<p><?php esc_html_e('The following plugins extend and expand the functionality of your app.','empd-com'); ?></p>
<?php echo esc_html(emd_add_ons('tabs',$appd)); ?>
</div>
<?php
echo ob_get_clean();
}
}
/**
* Get plugin and extension list from emdplugins site and save it in a transient
*
* @since WPAS 4.2
*
* @return $cache html content
*/
if (!function_exists('emd_add_ons')) {
function emd_add_ons($type,$appd) {
if($type == 'tabs'){
require_once(constant(strtoupper($appd) . "_PLUGIN_DIR") . '/includes/admin/tabs.php');
}
elseif($type == 'plugin-support'){
require_once(constant(strtoupper($appd) . "_PLUGIN_DIR") . '/includes/admin/plugin-support.php');
}
}
}
/**
* Show support info
*
* @param string $appd
* @since WPAS 4.3
*
* @return html page content
*/
if (!function_exists('emd_display_support')) {
function emd_display_support($appd,$show_review,$rev=''){
global $title;
ob_start(); ?>
<div class="wrap">
<h2><?php echo esc_html($title);?></h2>
<div id="support-header"><?php printf(__('Thanks for installing %s.','empd-com'),constant(strtoupper($appd) . '_NAME'));?> <?php printf(__('All support requests are accepted through <a href="%s" target="_blank">our support site.</a>','empd-com'),'https://emdplugins.com/support/?pk_source=support-page&pk_medium=plugin&pk_campaign=plugin-support&pk_content=supportlink'); ?>
<?php
switch($show_review){
case '1':
//if prodev or freedev generation
emd_display_review('wp-app-studio');
break;
case '2':
//eMarketDesign free plugin
emd_display_review($rev);
break;
default:
echo "<br></br>";
break;
}
echo '</div>';
echo esc_html(emd_add_ons('plugin-support',$appd));
echo '</div>';
echo ob_get_clean();
}
}
if (!function_exists('emd_display_review')) {
function emd_display_review($plugin){
?>
<div id="plugin-review">
<div class="plugin-review-text"><a href="https://wordpress.org/support/view/plugin-reviews/<?php echo esc_attr($plugin); ?>" target="_blank"><?php esc_html_e('Like our plugin? Leave us a review','empd-com'); ?></a>
</div><div class="plugin-review-star"><span class="dashicons dashicons-star-filled"></span>
<span class="dashicons dashicons-star-filled"></span>
<span class="dashicons dashicons-star-filled"></span>
<span class="dashicons dashicons-star-filled"></span>
<span class="dashicons dashicons-star-filled"></span>
</div>
</div>
<?php
}
}