| Server IP : 68.178.247.200 / Your IP : 216.73.216.14 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/plugins/simple-sitemap/api/templates/settings/ |
Upload File : |
<?php
namespace WPGO_Plugins\Plugin_Framework;
/*
* Plugin utility functions
*/
class New_Features_Templates_FW
{
protected $module_roots;
/* Class constructor. */
public function __construct($module_roots)
{
$this->module_roots = $module_roots;
}
public function new_features_loop($new_features_arr, $freemius_discount_upgrade_url, $is_premium, $plugin_data, $path_prefix = '' ) {
$path_prefix = empty($path_prefix) ? '' : '/' . $path_prefix;
ob_start(); // Start recording output.
?>
<ul class="wpgo-settings-grid-container">
<?php
foreach ($new_features_arr as $key => $new_feature):
if( isset( $new_feature->type) ) {
if ( 'update' === $new_feature->type) {
$ribbon_text = "UPDATE";
$ribbon_color = 'update';
} else if ( 'fix' === $new_feature->type) {
$ribbon_text = "FIX";
$ribbon_color = 'fix';
} else {
$ribbon_text = "NEW";
$ribbon_color = 'new';
}
} else {
$ribbon_text = '';
$ribbon_color = '';
}
if ($new_feature->license === 'pro') {
$type_class = 'pro-only';
$type_label = '<a href="' . $freemius_discount_upgrade_url . '">PRO</a>';
} else {
$type_class = 'free-only';
$type_label = 'FREE';
}
// don't show 'PRO' label for the premium plugin as it's redundant
$type_html = !$is_premium ? '<div class="' . $type_class . '">' . $type_label . '</div>' : '';
// Ribbon visibility.
$new_ribbon = (($plugin_data['Version'] === $new_feature->version) || ($new_feature->version === 'latest')) ? '<div class="ribbon-wrapper"><div class="ribbon ' . $ribbon_color . '">' . $ribbon_text . '</div></div>' : '';
?>
<li>
<div class="wpgo-settings-card">
<?php echo $new_ribbon; ?>
<div class="image-wrapper">
<?php echo $type_html; ?>
<img class="post-image" src="<?php echo $this->module_roots['uri'] . $path_prefix . '/assets/images/new-features/' . $new_feature->banner_url; ?>">
</div>
<div class="details" style="font-weight: bold;">
<div>Version: <?php echo $new_feature->version; ?></div>
<div><?php echo $new_feature->date; ?></div>
</div>
<div class="card-content">
<h2><?php echo $new_feature->title; ?></h2>
<p><?php echo $new_feature->description; ?></p>
</div>
<?php
$hide = ' hide-button';
$learn_more_visibility = $new_feature->learn_more_url === '' ? $hide : '';
$upgrade_visibility = ($new_feature->license === 'free' || $new_feature->license === 'free-only') || $is_premium ? $hide : '';
// if both buttons not shown then don't show permalink section
// $permalink_html = ($learn_more_visibility !== '') && ($upgrade_visibility !== '') ? '' : '<div class="permalink"><a class="button left' . $learn_more_visibility . '" href="' . $new_feature->learn_more_url . '" target="_blank">Learn More</a><a class="button right' . $upgrade_visibility . '" href="' . $freemius_discount_upgrade_url . '">Upgrade</a></div>';
$permalink_html = '<div class="permalink"><a class="button left' . $learn_more_visibility . '" href="' . $new_feature->learn_more_url . '" target="_blank">Learn More</a><a class="button right' . $upgrade_visibility . '" href="' . $freemius_discount_upgrade_url . '">Upgrade</a></div>';
echo $permalink_html;
?>
</div>
</li>
<?php endforeach;?>
</ul>
<?php
$new_features_content = ob_get_contents(); // Get output contents.
ob_end_clean(); // End recording output and flush buffer.
return $new_features_content;
}
} /* End class definition */