38217-vm/wp-content/plugins/mainwp/pages/page-mainwp-updates-per-group.php
2026-02-05 17:08:59 +03:00

1174 lines
97 KiB
PHP

<?php
/**
* MainWP Updates Per Group.
*
* @package MainWP/Dashboard
*/
namespace MainWP\Dashboard;
/**
* Class MainWP_Updates_Per_Group
*
* @package MainWP\Dashboard
*/
class MainWP_Updates_Per_Group { // phpcs:ignore Generic.Classes.OpeningBraceSameLine.ContentAfterBrace -- NOSONAR.
/**
* Method get_class_name()
*
* Get Class Name.
*
* @return object
*/
public static function get_class_name() {
return __CLASS__;
}
/**
* Method render_wpcore_updates()
*
* Render WP core updates
*
* @param object $websites the websites.
* @param object $userExtension User Extension.
* @param int $total_wp_upgrades total update.
* @param array $all_groups_sites all groups of sites.
* @param array $all_groups all groups.
* @param int $site_offset_for_groups offset value.
*
* @uses \MainWP\Dashboard\MainWP_DB::get_website_option()
* @uses \MainWP\Dashboard\MainWP_DB::fetch_object()
* @uses \MainWP\Dashboard\MainWP_DB::data_seek()
* @uses \MainWP\Dashboard\MainWP_UI::render_sorting_icons()
* @uses \MainWP\Dashboard\MainWP_Updates::user_can_update_wp()
* @uses \MainWP\Dashboard\MainWP_Updates::set_continue_update_html_selector()
* @uses \MainWP\Dashboard\MainWP_Updates::render_site_link_dashboard()
*/
public static function render_wpcore_updates( $websites, $userExtension, $total_wp_upgrades, $all_groups_sites, $all_groups, $site_offset_for_groups ) { // phpcs:ignore -- NOSONAR - complex method. Current complexity is the only way to achieve desired results, pull request solutions appreciated.
$user_can_see_client = \mainwp_current_user_can( 'dashboard', 'manage_clients' );
$decodedIgnoredCores = ! empty( $userExtension->ignored_wp_upgrades ) ? json_decode( $userExtension->ignored_wp_upgrades, true ) : array();
if ( ! is_array( $decodedIgnoredCores ) ) {
$decodedIgnoredCores = array();
}
?>
<?php if ( 0 < $total_wp_upgrades ) : ?>
<table class="ui tablet stackable table mainwp-manage-updates-table main-master-checkbox" id="mainwp-wordpress-updates-groups-table"> <!-- Per Group table -->
<thead>
<tr>
<th scope="col" class="collapsing no-sort trigger-all-accordion">
<span class="trigger-handle-arrow"><i class="caret right icon"></i><i class="caret down icon"></i></span>
</th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting">
<div class="ui main-master checkbox ">
<input type="checkbox" name=""><label><?php esc_html_e( 'Tag', 'mainwp' ); ?></label>
</div>
<?php MainWP_UI::render_sorting_icons(); ?>
</th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Updates', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="no-sort"></th>
</tr>
</thead>
<tbody class="ui accordion"> <!-- per group -->
<?php foreach ( $all_groups_sites as $group_id => $site_ids ) : ?>
<?php
$total_group_wp_updates = 0;
$group_name = $all_groups[ $group_id ];
?>
<tr row-uid="uid_wp_upgrades_<?php echo esc_attr( $group_id ); ?>" class="ui title master-checkbox">
<td class="accordion-trigger"><i class="icon dropdown"></i></td>
<td>
<div class="ui master checkbox">
<input type="checkbox" name=""><label><?php echo esc_html( stripslashes( $group_name ) ); ?></label>
</div>
</td>
<td sort-value="0"><span total-uid="uid_wp_upgrades_<?php echo esc_attr( $group_id ); ?>" data-inverted="" data-tooltip="<?php esc_attr_e( 'Click to see available updates', 'mainwp' ); ?>"></span></td>
<td class="right aligned">
<?php if ( MainWP_Updates::user_can_update_wp() ) : ?>
<a href="javascript:void(0)" data-tooltip="<?php esc_attr_e( 'Update all sites in the tag', 'mainwp' ); ?>" data-inverted="" data-position="left center" btn-all-uid2="uid_wp_upgrades_<?php echo esc_attr( $group_id ); ?>" class="mainwp-update-selected-button ui basic green mini button" onClick="event.stopPropagation();updatesoverview_wordpress_global_upgrade_all( <?php echo esc_attr( $group_id ); ?>, true ); return false;"><?php esc_html_e( 'Update Selected', 'mainwp' ); ?></a>
<a href="javascript:void(0)" data-tooltip="<?php esc_attr_e( 'Update all sites in the tag', 'mainwp' ); ?>" data-inverted="" data-position="left center" btn-all-uid="uid_wp_upgrades_<?php echo esc_attr( $group_id ); ?>" class="mainwp-update-all-button ui green mini button" onClick="updatesoverview_wordpress_global_upgrade_all( <?php echo esc_attr( $group_id ); ?> ); return false;"><?php esc_html_e( 'Update All', 'mainwp' ); ?></a>
<?php endif; ?>
</td>
</tr>
<tr class="child-checkbox content">
<td colspan="4">
<table id="mainwp-wordpress-updates-groups-inner-table" class="ui table mainwp-manage-updates-table mainwp-per-group-table">
<thead class="mainwp-768-hide">
<tr>
<th scope="col" ><?php esc_html_e( 'Website', 'mainwp' ); ?></th>
<th scope="col" ><?php esc_html_e( 'Version', 'mainwp' ); ?></th>
<th scope="col" class="no-sort"><?php esc_html_e( 'Latest', 'mainwp' ); ?></th>
<?php if ( $user_can_see_client ) { ?>
<th scope="col" ><?php esc_html_e( 'Client', 'mainwp' ); ?></th>
<?php } ?>
<th scope="col" class="no-sort"></th>
</tr>
</thead>
<tbody id="update_wrapper_wp_upgrades_group_<?php echo esc_attr( $group_id ); ?>">
<?php foreach ( $site_ids as $site_id ) : ?>
<?php
if ( ! isset( $site_offset_for_groups[ $site_id ] ) ) {
continue;
}
$seek = $site_offset_for_groups[ $site_id ];
MainWP_DB::data_seek( $websites, $seek );
$website = MainWP_DB::fetch_object( $websites );
if ( $website->is_ignoreCoreUpdates ) {
continue;
}
$wp_upgrades = ! empty( $website->wp_upgrades ) ? json_decode( $website->wp_upgrades, true ) : array();
$ignored_core_upgrades = ! empty( $website->ignored_wp_upgrades ) ? json_decode( $website->ignored_wp_upgrades, true ) : array();
if ( MainWP_Common_Functions::instance()->is_ignored_updates( $wp_upgrades, $ignored_core_upgrades, 'core' ) || MainWP_Common_Functions::instance()->is_ignored_updates( $wp_upgrades, $decodedIgnoredCores, 'core' ) ) {
$wp_upgrades = array();
}
if ( ( empty( $wp_upgrades ) ) && empty( $website->sync_errors ) ) {
continue;
}
$wpcore_update_disabled_by = MainWP_System_Utility::disabled_wpcore_update_by( $website );
++$total_group_wp_updates;
$last_version = ! empty( $wp_upgrades ) && ! empty( $wp_upgrades['new'] ) ? $wp_upgrades['new'] : '';
?>
<tr class="mainwp-wordpress-update" last-version="<?php echo esc_attr( rawurlencode( $last_version ) ); ?>" site_id="<?php echo esc_attr( $website->id ); ?>" site_name="<?php echo esc_attr( rawurlencode( stripslashes( $website->name ) ) ); ?>" updated="<?php echo ! empty( $wp_upgrades ) && empty( $wpcore_update_disabled_by ) ? '0' : '1'; ?>">
<td>
<div class="ui child checkbox">
<input type="checkbox" name=""><label><?php MainWP_Updates::render_site_link_dashboard( $website ); ?></label>
</div>
<input type="hidden" id="wp-updated-<?php echo esc_attr( $website->id ); ?>" value="<?php echo ! empty( $wp_upgrades ) ? '0' : '1'; ?>" />
</td>
<td>
<?php if ( ! empty( $wp_upgrades ) ) : ?>
<strong class="mainwp-768-show"><?php esc_html_e( 'Version:', 'mainwp' ); ?></strong> <?php echo esc_html( $wp_upgrades['current'] ); ?>
<?php endif; ?>
</td>
<td>
<?php if ( ! empty( $wp_upgrades ) ) : ?>
<strong class="mainwp-768-show"><?php esc_html_e( 'Latest:', 'mainwp' ); ?></strong> <?php echo esc_html( $wp_upgrades['new'] ); ?>
<?php endif; ?>
</td>
<?php if ( $user_can_see_client ) { ?>
<td><a href="<?php echo 'admin.php?page=ManageClients&client_id=' . intval( $website->client_id ); ?>" data-tooltip="<?php esc_attr_e( 'Jump to the client', 'mainwp' ); ?>" data-position="right center" data-inverted="" ><?php echo esc_html( $website->client_name ); ?></a></td>
<?php } ?>
<td>
<?php if ( MainWP_Updates::user_can_update_wp() ) : ?>
<?php if ( ! empty( $wp_upgrades ) ) : ?>
<?php if ( ! empty( $wpcore_update_disabled_by ) ) : ?>
<span data-tooltip="<?php echo esc_html( $wpcore_update_disabled_by ); ?>" data-inverted="" data-position="left center"><a href="javascript:void(0)" class="ui green button mini disabled"><?php esc_html_e( 'Update', 'mainwp' ); ?></a></span>
<?php else : ?>
<div class="ui top left pointing dropdown mini button">
<?php esc_html_e( 'Ignore', 'mainwp' ); ?><i class="dropdown icon"></i>
<div class="menu">
<a href="javascript:void(0)" onClick="return updatesoverview_upgrade_ignore( <?php echo intval( $website->id ); ?>, this, '<?php echo esc_js( rawurlencode( $last_version ) ); ?>' )" class="item"><?php esc_html_e( 'Ignore this version', 'mainwp' ); ?></a>
<a href="javascript:void(0)" class="item mainwp-ignore-globally-button" onClick="return updatesoverview_upgrade_ignore_this_version_globally( '<?php echo esc_js( rawurlencode( $last_version ) ); ?>' )"><?php esc_html_e( 'Ignore this version globally', 'mainwp' ); ?></a>
<a href="javascript:void(0)" onClick="return updatesoverview_upgrade_ignore_all_version( <?php echo intval( $website->id ); ?>, this )" class="item"><?php esc_html_e( 'Ignore all versions', 'mainwp' ); ?></a>
</div>
</div>
<a href="javascript:void(0)" data-tooltip="<?php esc_attr_e( 'Update', 'mainwp' ) . ' ' . $website->name; ?>" data-inverted="" data-position="left center" class="mainwp-update-now-button ui green button mini" onClick="return updatesoverview_upgrade(<?php echo esc_attr( $website->id ); ?>, this )"><?php esc_html_e( 'Update', 'mainwp' ); ?></a>
<?php endif; ?>
<?php endif; ?>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<input type="hidden" class="element_ui_view_values" elem-uid="uid_wp_upgrades_<?php echo esc_attr( $group_id ); ?>" total="<?php echo intval( $total_group_wp_updates ); ?>" can-update="<?php echo MainWP_Updates::user_can_update_wp() ? 1 : 0; ?>">
<?php endforeach; ?>
</tbody>
</table>
<?php else : ?>
<?php MainWP_UI::render_empty_page_placeholder( __( 'You\'re All Set!', 'mainwp' ), __( 'No updates available right now.', 'mainwp' ) ); ?>
<?php endif; ?>
<?php
}
/**
* Method render_plugins_updates()
*
* Render Plugin updates
*
* @param object $websites the websites.
* @param int $total_plugin_upgrades total plugin updates.
* @param mixed $userExtension The user extension.
* @param array $all_groups_sites all groups of sites.
* @param array $all_groups all groups.
* @param int $site_offset_for_groups offset value.
* @param array $trustedPlugins all plugins trusted by user.
*
* @uses \MainWP\Dashboard\MainWP_DB::get_website_option()
* @uses \MainWP\Dashboard\MainWP_DB::fetch_object()
* @uses \MainWP\Dashboard\MainWP_DB::data_seek()
* @uses \MainWP\Dashboard\MainWP_UI::render_sorting_icons()
* @uses \MainWP\Dashboard\MainWP_UI::render_show_all_updates_button()
* @uses \MainWP\Dashboard\MainWP_Updates_Table_Helper
* @uses \MainWP\Dashboard\MainWP_Updates::user_can_update_plugins()
* @uses \MainWP\Dashboard\MainWP_Updates::set_continue_update_html_selector()
* @uses \MainWP\Dashboard\MainWP_Updates::render_site_link_dashboard()
* @uses \MainWP\Dashboard\MainWP_Updates::user_can_ignore_updates()
*/
public static function render_plugins_updates( $websites, $total_plugin_upgrades, $userExtension, $all_groups_sites, $all_groups, $site_offset_for_groups, $trustedPlugins ) { // phpcs:ignore -- NOSONAR - complex.
$updates_table_helper = new MainWP_Updates_Table_Helper( $userExtension->site_view );
$user_can_see_client = \mainwp_current_user_can( 'dashboard', 'manage_clients' );
?>
<?php if ( 0 < $total_plugin_upgrades ) : ?>
<table class="ui tablet stackable table mainwp-manage-updates-table main-master-checkbox" id="mainwp-plugins-updates-groups-table">
<thead>
<tr>
<th scope="col" class="collapsing no-sort trigger-all-accordion">
<span class="trigger-handle-arrow"><i class="caret right icon"></i><i class="caret down icon"></i></span>
</th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting">
<div class="ui main-master checkbox ">
<input type="checkbox" name=""><label><?php esc_html_e( 'Tag', 'mainwp' ); ?></label>
</div>
<?php MainWP_UI::render_sorting_icons(); ?>
</th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Updates', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="no-sort"><?php MainWP_UI::render_show_all_updates_button(); ?></th>
</tr>
</thead>
<tbody id="plugins-updates-global" class="ui accordion">
<?php foreach ( $all_groups_sites as $group_id => $site_ids ) : ?>
<?php
if ( empty( $site_ids ) ) {
continue;
}
$total_group_plugin_updates = 0;
$group_name = $all_groups[ $group_id ];
?>
<tr class="title main-master-checkbox" row-uid="uid_plugin_updates_<?php echo esc_attr( $group_id ); ?>">
<td class="accordion-trigger"><i class="icon dropdown"></i></td>
<td>
<div class="ui main-master checkbox ">
<input type="checkbox" name=""><label><?php echo esc_html( stripslashes( $group_name ) ); ?></label>
</div>
</td>
<td total-uid="uid_plugin_updates_<?php echo esc_attr( $group_id ); ?>" sort-value="0"></td>
<td>
<?php if ( MainWP_Updates::user_can_update_plugins() ) : ?>
<a href="javascript:void(0)" none-btn-all-uid="uid_plugin_updates_<?php echo esc_attr( $group_id ); ?>" class="mainwp-update-selected-button ui green basic mini button" onClick="event.stopPropagation(); updatesoverview_plugins_global_upgrade_all( <?php echo esc_attr( $group_id ); ?>, true ); return false;"><?php esc_html_e( 'Update Selected', 'mainwp' ); ?></a>
<a href="javascript:void(0)" btn-all-uid="uid_plugin_updates_<?php echo esc_attr( $group_id ); ?>" class="mainwp-update-all-button ui green mini button" onClick="updatesoverview_plugins_global_upgrade_all( <?php echo esc_attr( $group_id ); ?> ); return false;"><?php esc_html_e( 'Update All', 'mainwp' ); ?></a>
<?php endif; ?>
</td>
</tr>
<tr class="main-child-checkbox content" row-uid="uid_plugin_updates_<?php echo esc_attr( $group_id ); ?>">
<td colspan="4">
<table id="mainwp-wordpress-updates-sites-inner-table" class="ui grey table mainwp-per-group-table mainwp-manage-updates-table">
<thead class="mainwp-768-hide">
<tr>
<th scope="col" class="collapsing no-sort"></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Website', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Updates', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<?php if ( $user_can_see_client ) { ?>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php echo esc_html__( 'Client', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<?php } ?>
<th scope="col" class="collapsing no-sort"></th>
</tr>
</thead>
<tbody id="update_wrapper_plugin_upgrades_group_<?php echo esc_attr( $group_id ); ?>" >
<?php foreach ( $site_ids as $site_id ) : ?>
<?php
if ( ! isset( $site_offset_for_groups[ $site_id ] ) ) {
continue;
}
$seek = $site_offset_for_groups[ $site_id ];
MainWP_DB::data_seek( $websites, $seek );
$website = MainWP_DB::fetch_object( $websites );
if ( $website->is_ignorePluginUpdates ) {
continue;
}
$plugin_upgrades = json_decode( $website->plugin_upgrades, true );
$site_opts = MainWP_DB::instance()->get_website_options_array( $website, array( 'premium_upgrades', 'rollback_updates_data' ) );
if ( ! is_array( $site_opts ) ) {
$site_opts = array();
}
$decodedPremiumUpgrades = ! empty( $site_opts['premium_upgrades'] ) ? json_decode( $site_opts['premium_upgrades'], true ) : array();
$rollItems = ! empty( $site_opts['rollback_updates_data'] ) ? json_decode( $site_opts['rollback_updates_data'], true ) : array();
$rollPlugins = array();
if ( is_array( $rollItems ) && ! empty( $rollItems['plugin'] ) && is_array( $rollItems['plugin'] ) ) {
$rollPlugins = $rollItems['plugin'];
}
if ( is_array( $decodedPremiumUpgrades ) ) {
foreach ( $decodedPremiumUpgrades as $crrSlug => $premiumUpgrade ) {
$premiumUpgrade['premium'] = true;
if ( 'plugin' === $premiumUpgrade['type'] ) {
if ( ! is_array( $plugin_upgrades ) ) {
$plugin_upgrades = array();
}
if ( ! isset( $plugin_upgrades[ $crrSlug ] ) ) {
continue;
}
$premiumUpgrade = array_filter( $premiumUpgrade );
if ( isset( $plugin_upgrades[ $crrSlug ] ) && is_array( $plugin_upgrades[ $crrSlug ] ) ) {
$plugin_upgrades[ $crrSlug ] = array_merge( $plugin_upgrades[ $crrSlug ], $premiumUpgrade );
} else {
$plugin_upgrades[ $crrSlug ] = $premiumUpgrade;
}
}
}
}
$ignored_plugins = json_decode( $website->ignored_plugins, true );
if ( is_array( $ignored_plugins ) ) {
$plugin_upgrades = MainWP_Common_Functions::instance()->get_not_ignored_updates_themesplugins( $plugin_upgrades, $ignored_plugins );
}
$ignored_plugins = json_decode( $userExtension->ignored_plugins, true );
if ( is_array( $ignored_plugins ) ) {
$plugin_upgrades = MainWP_Common_Functions::instance()->get_not_ignored_updates_themesplugins( $plugin_upgrades, $ignored_plugins );
}
$total_group_plugin_updates += count( $plugin_upgrades );
if ( ( empty( $plugin_upgrades ) ) && ( empty( $website->sync_errors ) ) ) {
continue;
}
?>
<tr class="ui title master-checkbox">
<td class="accordion-trigger"><i class="icon dropdown"></i></td>
<td>
<div class="ui master checkbox">
<input type="checkbox" name=""><label><?php MainWP_Updates::render_site_link_dashboard( $website ); ?></label>
</div>
</td>
<td sort-value="<?php echo count( $plugin_upgrades ); ?>"><strong class="mainwp-768-show"><?php echo esc_html__( 'Updates: ', 'mainwp' ); ?></strong> <?php echo count( $plugin_upgrades ) . ' ' . esc_html( _n( 'Update', 'Updates', count( $plugin_upgrades ), 'mainwp' ) ); ?></td>
<?php if ( $user_can_see_client ) { ?>
<td><a href="<?php echo 'admin.php?page=ManageClients&client_id=' . intval( $website->client_id ); ?>" data-tooltip="<?php esc_attr_e( 'Jump to the client', 'mainwp' ); ?>" data-position="right center" data-inverted="" ><?php echo esc_html( $website->client_name ); ?></a></td>
<?php } ?>
<td>
<?php if ( MainWP_Updates::user_can_update_plugins() ) : ?>
<?php if ( ! empty( $plugin_upgrades ) ) : ?>
<a href="javascript:void(0)" class="mainwp-update-selected-button ui green basic mini button" onClick="event.stopPropagation(); return updatesoverview_group_upgrade_plugin_all( <?php echo esc_attr( $website->id ); ?>, <?php echo esc_attr( $group_id ); ?>, true )"><?php esc_html_e( 'Update Selected', 'mainwp' ); ?></a>
<a href="javascript:void(0)" class="mainwp-update-all-button ui green mini button" onClick="return updatesoverview_group_upgrade_plugin_all( <?php echo esc_attr( $website->id ); ?>, <?php echo esc_attr( $group_id ); ?> )"><?php esc_html_e( 'Update All', 'mainwp' ); ?></a>
<?php endif; ?>
<?php endif; ?>
</td>
</tr>
<tr class="child-checkbox content">
<td colspan="5">
<table id="mainwp-wordpress-updates-plugins-inner-table" class="ui table mainwp-manage-updates-table mainwp-updates-list">
<thead class="mainwp-768-hide">
<tr>
<?php $updates_table_helper->print_column_headers(); ?>
</tr>
</thead>
<tbody class="plugins-bulk-updates" id="wp_plugin_upgrades_<?php echo esc_attr( $website->id ); ?>_group_<?php echo esc_attr( $group_id ); ?>" site_id="<?php echo esc_attr( $website->id ); ?>" site_name="<?php echo esc_attr( rawurlencode( stripslashes( $website->name ) ) ); ?>">
<?php foreach ( $plugin_upgrades as $slug => $plugin_upgrade ) : ?>
<?php $plugin_name = rawurlencode( $slug ); ?>
<?php
$indent_hidden = '<input type="hidden" id="wp_upgraded_plugin_' . esc_attr( $website->id ) . '_group_' . esc_attr( $group_id ) . '_' . $plugin_name . '" value="0"/>';
$last_version = $plugin_upgrade['update']['new_version'];
$row_columns = array(
'title' => MainWP_System_Utility::get_plugin_icon( dirname( $slug ) ) . '&nbsp;&nbsp;&nbsp;&nbsp;<a href="' . admin_url() . 'plugin-install.php?tab=plugin-information&wpplugin=' . intval( $website->id ) . '&plugin=' . esc_attr( $plugin_upgrade['update']['slug'] ) . '&url=' . ( isset( $plugin_upgrade['PluginURI'] ) ? rawurlencode( $plugin_upgrade['PluginURI'] ) : '' ) . '&name=' . rawurlencode( $plugin_upgrade['Name'] ) . '" target="_blank" class="open-plugin-details-modal">' . esc_html( $plugin_upgrade['Name'] ) . '</a>' . $indent_hidden,
'version' => '<strong class="mainwp-768-show">' . esc_html__( 'Version: ', 'mainwp' ) . '</strong>' . esc_html( $plugin_upgrade['Version'] ),
'latest' => '<strong class="mainwp-768-show">' . esc_html__( 'Updates: ', 'mainwp' ) . '</strong><a href="' . admin_url() . 'plugin-install.php?tab=plugin-information&wpplugin=' . intval( $website->id ) . '&plugin=' . esc_attr( $plugin_upgrade['update']['slug'] ) . '&url=' . ( isset( $plugin_upgrade['PluginURI'] ) ? rawurlencode( $plugin_upgrade['PluginURI'] ) : '' ) . '&name=' . rawurlencode( $plugin_upgrade['Name'] ) . '&section=changelog" target="_blank" class="open-plugin-details-modal">' . esc_html( $last_version ) . '</a>',
'trusted' => ( in_array( $slug, $trustedPlugins ) ? true : false ),
'status' => ( isset( $plugin_upgrade['active'] ) && $plugin_upgrade['active'] ) ? true : false,
);
$others = array();
if ( ! empty( $rollPlugins[ $slug ][ $last_version ] ) ) {
$msg = MainWP_Updates_Helper::get_roll_msg( $rollPlugins[ $slug ][ $last_version ], true, 'notice' );
$others['roll_info'] = $msg;
}
?>
<tr class="mainwp-plugin-update" plugin_slug="<?php echo esc_attr( $plugin_name ); ?>" version="<?php echo esc_attr( rawurlencode( $plugin_upgrade['Version'] ) ); ?>" site_name="<?php echo esc_attr( stripslashes( $website->name ) ); ?>" premium="<?php echo isset( $plugin_upgrade['premium'] ) && ! empty( $plugin_upgrade['premium'] ) ? 1 : 0; ?>" updated="0">
<?php
$row_columns = $updates_table_helper->render_columns( $row_columns, $website, $others );
$action_rendered = isset( $row_columns['action'] ) ? true : false;
if ( ! $action_rendered ) :
?>
<td>
<?php if ( MainWP_Updates::user_can_ignore_updates() ) : ?>
<div class="ui top left pointing dropdown mini button">
<?php esc_html_e( 'Ignore', 'mainwp' ); ?><i class="dropdown icon"></i>
<div class="menu">
<a href="javascript:void(0)" class="mainwp-ignore-update-button item" onClick="return updatesoverview_plugins_ignore_detail( '<?php echo esc_js( $plugin_name ); ?>', '<?php echo esc_js( rawurlencode( $plugin_upgrade['Name'] ) ); ?>', <?php echo intval( $website->id ); ?>, this, '<?php echo esc_js( rawurlencode( $last_version ) ); ?>' )"><?php esc_html_e( 'Ignore this version', 'mainwp' ); ?></a>
<a href="javascript:void(0)" class="item mainwp-ignore-globally-button" onClick="return updatesoverview_plugins_ignore_all( '<?php echo esc_js( $plugin_name ); ?>', '<?php echo esc_attr( rawurlencode( $plugin_upgrade['Name'] ) ); ?>', this, '<?php echo esc_js( rawurlencode( $last_version ) ); ?>' )"><?php esc_html_e( 'Ignore this version globally', 'mainwp' ); ?></a>
<a href="javascript:void(0)" class="mainwp-ignore-update-button item" onClick="return updatesoverview_plugins_ignore_detail( '<?php echo esc_js( $plugin_name ); ?>', '<?php echo esc_js( rawurlencode( $plugin_upgrade['Name'] ) ); ?>', <?php echo intval( $website->id ); ?>, this, 'all_versions' )"><?php esc_html_e( 'Ignore all versions', 'mainwp' ); ?></a>
</div>
</div>
<?php endif; ?>
<?php if ( MainWP_Updates::user_can_update_plugins() ) : ?>
<a href="javascript:void(0)" class="mainwp-update-now-button ui mini green button" onClick="return updatesoverview_plugins_upgrade( '<?php echo esc_js( $plugin_name ); ?>', <?php echo intval( $website->id ); ?> )"><?php esc_html_e( 'Update', 'mainwp' ); ?></a>
<?php endif; ?>
</td>
<?php endif; ?>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<input type="hidden" class="element_ui_view_values" elem-uid="uid_plugin_updates_<?php echo esc_attr( $group_id ); ?>" total="<?php echo intval( $total_group_plugin_updates ); ?>" can-update="<?php echo MainWP_Updates::user_can_update_plugins() ? 1 : 0; ?>">
<?php endforeach; ?>
</tbody>
</table>
<?php else : ?>
<?php MainWP_UI::render_empty_page_placeholder( __( 'You\'re All Set!', 'mainwp' ), __( 'No updates available right now.', 'mainwp' ) ); ?>
<?php endif; ?>
<?php
}
/**
* Method render_themes_updates()
*
* Render theme updates
*
* @param object $websites the websites.
* @param int $total_theme_upgrades total theme updates.
* @param mixed $userExtension The user extension.
* @param array $all_groups_sites all groups of sites.
* @param array $all_groups all groups.
* @param int $site_offset_for_groups offset value.
* @param array $trustedThemes all themes trusted by user.
*
* @uses \MainWP\Dashboard\MainWP_DB::get_website_option()
* @uses \MainWP\Dashboard\MainWP_DB::fetch_object()
* @uses \MainWP\Dashboard\MainWP_DB::data_seek()
* @uses \MainWP\Dashboard\MainWP_UI::render_sorting_icons()
* @uses \MainWP\Dashboard\MainWP_UI::render_show_all_updates_button()
* @uses \MainWP\Dashboard\MainWP_Updates_Table_Helper
* @uses \MainWP\Dashboard\MainWP_Updates::user_can_update_themes()
* @uses \MainWP\Dashboard\MainWP_Updates::set_continue_update_html_selector()
* @uses \MainWP\Dashboard\MainWP_Updates::user_can_update_themes()
* @uses \MainWP\Dashboard\MainWP_Updates::render_site_link_dashboard()
* @uses \MainWP\Dashboard\MainWP_Updates::user_can_ignore_updates()
*/
public static function render_themes_updates( $websites, $total_theme_upgrades, $userExtension, $all_groups_sites, $all_groups, $site_offset_for_groups, $trustedThemes ) { // phpcs:ignore -- NOSONAR - complex.
$updates_table_helper = new MainWP_Updates_Table_Helper( $userExtension->site_view, 'theme' );
$user_can_see_client = \mainwp_current_user_can( 'dashboard', 'manage_clients' );
?>
<?php if ( 0 < $total_theme_upgrades ) : ?>
<table class="ui tablet stackable table mainwp-manage-updates-table main-master-checkbox" id="mainwp-themes-updates-groups-table">
<thead>
<tr>
<th scope="col" class="collapsing no-sort trigger-all-accordion"><span class="trigger-handle-arrow"><i class="caret right icon"></i><i class="caret down icon"></i></span></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting">
<div class="ui main-master checkbox ">
<input type="checkbox" name=""><label><?php esc_html_e( 'Tag', 'mainwp' ); ?></label>
</div>
<?php MainWP_UI::render_sorting_icons(); ?>
</th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Updates', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="no-sort right aligned"><?php MainWP_UI::render_show_all_updates_button(); ?></th>
</tr>
</thead>
<tbody id="themes-updates-global" class="ui accordion">
<?php foreach ( $all_groups_sites as $group_id => $site_ids ) : ?>
<?php
if ( empty( $site_ids ) ) {
continue;
}
$total_group_theme_updates = 0;
$group_name = $all_groups[ $group_id ];
?>
<tr class="title main-master-checkbox" row-uid="uid_theme_updates_<?php echo esc_attr( $group_id ); ?>">
<td class="accordion-trigger"><i class="icon dropdown"></i></td>
<td>
<div class="ui main-master checkbox ">
<input type="checkbox" name=""><label><?php echo esc_html( stripslashes( $group_name ) ); ?></label>
</div>
</td>
<td total-uid="uid_theme_updates_<?php echo esc_attr( $group_id ); ?>" sort-value="0"></td>
<td>
<?php if ( MainWP_Updates::user_can_update_themes() ) : ?>
<a href="javascript:void(0)" btn-all-uid2="uid_theme_updates_<?php echo esc_attr( $group_id ); ?>" class="mainwp-update-selected-button ui green basic mini button" onClick="updatesoverview_themes_global_upgrade_all( <?php echo esc_attr( $group_id ); ?>, true );return false;"><?php esc_html_e( 'Update Selected', 'mainwp' ); ?></a>
<a href="javascript:void(0)" btn-all-uid="uid_theme_updates_<?php echo esc_attr( $group_id ); ?>" class="mainwp-update-all-button ui green mini button" onClick="updatesoverview_themes_global_upgrade_all( <?php echo esc_attr( $group_id ); ?> );return false;"><?php esc_html_e( 'Update All', 'mainwp' ); ?></a>
<?php endif; ?>
</td>
</tr>
<tr class="title main-child-checkbox content" row-uid="uid_theme_updates_<?php echo esc_attr( $group_id ); ?>">
<td colspan="4">
<table id="mainwp-wordpress-updates-sites-inner-table" class="ui grey table mainwp-per-group-table mainwp-manage-updates-table">
<thead class="mainwp-768-hide">
<tr>
<th scope="col" class="collapsing no-sort"></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Website', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Updates', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<?php if ( $user_can_see_client ) { ?>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php echo esc_html__( 'Client', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<?php } ?>
<th scope="col" class="collapsing no-sort"></th>
</tr>
</thead>
<tbody class="accordion" id="update_wrapper_theme_upgrades_group_<?php echo esc_attr( $group_id ); ?>">
<?php foreach ( $site_ids as $site_id ) : ?>
<?php
if ( ! isset( $site_offset_for_groups[ $site_id ] ) ) {
continue;
}
$seek = $site_offset_for_groups[ $site_id ];
MainWP_DB::data_seek( $websites, $seek );
$website = MainWP_DB::fetch_object( $websites );
if ( $website->is_ignoreThemeUpdates ) {
continue;
}
$theme_upgrades = json_decode( $website->theme_upgrades, true );
$site_opts = MainWP_DB::instance()->get_website_options_array( $website, array( 'premium_upgrades', 'rollback_updates_data' ) );
if ( ! is_array( $site_opts ) ) {
$site_opts = array();
}
$decodedPremiumUpgrades = ! empty( $site_opts['premium_upgrades'] ) ? json_decode( $site_opts['premium_upgrades'], true ) : array();
$rollItems = ! empty( $site_opts['rollback_updates_data'] ) ? json_decode( $site_opts['rollback_updates_data'], true ) : array();
$rollThemes = array();
if ( is_array( $rollItems ) && ! empty( $rollItems['theme'] ) && is_array( $rollItems['theme'] ) ) {
$rollThemes = $rollItems['theme'];
}
if ( is_array( $decodedPremiumUpgrades ) ) {
foreach ( $decodedPremiumUpgrades as $crrSlug => $premiumUpgrade ) {
$premiumUpgrade['premium'] = true;
if ( 'theme' === $premiumUpgrade['type'] ) {
if ( ! is_array( $theme_upgrades ) ) {
$theme_upgrades = array();
}
$premiumUpgrade = array_filter( $premiumUpgrade );
if ( isset( $theme_upgrades[ $crrSlug ] ) && is_array( $theme_upgrades[ $crrSlug ] ) ) {
$theme_upgrades[ $crrSlug ] = array_merge( $theme_upgrades[ $crrSlug ], $premiumUpgrade );
} else {
$theme_upgrades[ $crrSlug ] = $premiumUpgrade;
}
}
}
}
$ignored_themes = json_decode( $website->ignored_themes, true );
if ( is_array( $ignored_themes ) ) {
$theme_upgrades = MainWP_Common_Functions::instance()->get_not_ignored_updates_themesplugins( $theme_upgrades, $ignored_themes );
}
$ignored_themes = json_decode( $userExtension->ignored_themes, true );
if ( is_array( $ignored_themes ) ) {
$theme_upgrades = MainWP_Common_Functions::instance()->get_not_ignored_updates_themesplugins( $theme_upgrades, $ignored_themes );
}
$total_group_theme_updates += count( $theme_upgrades );
if ( ( empty( $theme_upgrades ) ) && ( empty( $website->sync_errors ) ) ) {
continue;
}
?>
<tr class="ui title master-checkbox">
<td class="accordion-trigger"><i class="icon dropdown"></i></td>
<td>
<div class="ui master checkbox">
<input type="checkbox" name=""><label><?php MainWP_Updates::render_site_link_dashboard( $website ); ?></label>
</div>
</td>
<td sort-value="<?php echo count( $theme_upgrades ); ?>"><strong class="mainwp-768-show"><?php esc_html_e( 'Updates:', 'mainwp' ); ?></strong> <?php echo count( $theme_upgrades ) . ' ' . esc_html( _n( 'Update', 'Updates', count( $theme_upgrades ), 'mainwp' ) ); ?></td>
<?php if ( $user_can_see_client ) { ?>
<td><a href="<?php echo 'admin.php?page=ManageClients&client_id=' . intval( $website->client_id ); ?>" data-tooltip="<?php esc_attr_e( 'Jump to the client', 'mainwp' ); ?>" data-position="right center" data-inverted="" ><?php echo esc_html( $website->client_name ); ?></a></td>
<?php } ?>
<td class="right aligned">
<?php if ( MainWP_Updates::user_can_update_themes() ) : ?>
<?php if ( ! empty( $theme_upgrades ) ) : ?>
<a href="javascript:void(0)" class="mainwp-update-selected-button ui green basic mini button" onClick="event.stopPropagation(); return updatesoverview_group_upgrade_theme_all( <?php echo esc_attr( $website->id ); ?>, <?php echo esc_attr( $group_id ); ?>, true )"><?php esc_html_e( 'Update Selected', 'mainwp' ); ?></a>
<a href="javascript:void(0)" class="mainwp-update-all-button ui green mini button" onClick="return updatesoverview_group_upgrade_theme_all( <?php echo esc_attr( $website->id ); ?>, <?php echo esc_attr( $group_id ); ?> )"><?php esc_html_e( 'Update All', 'mainwp' ); ?></a>
<?php endif; ?>
<?php endif; ?>
</td>
</tr>
<tr class="child-checkbox content">
<td colspan="5">
<table id="mainwp-wordpress-updates-themes-inner-table" class="ui table mainwp-manage-updates-table mainwp-updates-list">
<thead class="mainwp-768-hide">
<tr>
<?php $updates_table_helper->print_column_headers(); ?>
</tr>
</thead>
<tbody class="themes-bulk-updates" id="wp_theme_upgrades_<?php echo esc_attr( $website->id ); ?>_group_<?php echo esc_attr( $group_id ); ?>" site_id="<?php echo esc_attr( $website->id ); ?>" site_name="<?php echo esc_attr( rawurlencode( stripslashes( $website->name ) ) ); ?>">
<?php foreach ( $theme_upgrades as $slug => $theme_upgrade ) : ?>
<?php $theme_name = rawurlencode( $slug ); ?>
<?php $indent_hidden = '<input type="hidden" id="wp_upgraded_theme_' . esc_attr( $website->id ) . '_group_' . esc_attr( $group_id ) . '_' . $theme_name . '" value="0"/>'; ?>
<?php
$last_version = $theme_upgrade['update']['new_version'];
$row_columns = array(
'title' => MainWP_System_Utility::get_theme_icon( $slug ) . '&nbsp;&nbsp;&nbsp;&nbsp;' . esc_html( $theme_upgrade['Name'] ) . $indent_hidden,
'version' => '<strong class="mainwp-768-show">' . esc_html__( 'Version: ', 'mainwp' ) . '</strong>' . esc_html( $theme_upgrade['Version'] ),
'latest' => '<strong class="mainwp-768-show">' . esc_html__( 'Latest: ', 'mainwp' ) . '</strong>' . esc_html( $last_version ),
'trusted' => ( in_array( $slug, $trustedThemes, true ) ? true : false ),
'status' => ( isset( $theme_upgrade['active'] ) && $theme_upgrade['active'] ) ? true : false,
);
$others = array();
if ( ! empty( $rollThemes[ $slug ][ $last_version ] ) ) {
$msg = MainWP_Updates_Helper::get_roll_msg( $rollThemes[ $slug ][ $last_version ], true, 'notice' );
$others['roll_info'] = $msg;
}
?>
<tr class="mainwp-theme-update" theme_slug="<?php echo esc_attr( $theme_name ); ?>" version="<?php echo esc_attr( rawurlencode( $theme_upgrade['Version'] ) ); ?>" premium="<?php echo isset( $theme_upgrade['premium'] ) && ! empty( $theme_upgrade['premium'] ) ? 1 : 0; ?>" updated="0">
<?php
$row_columns = $updates_table_helper->render_columns( $row_columns, $website, $others );
$action_rendered = isset( $row_columns['action'] ) ? true : false;
if ( ! $action_rendered ) :
?>
<td class="right aligned">
<?php if ( MainWP_Updates::user_can_ignore_updates() ) : ?>
<div class="ui top left pointing dropdown mini button">
<?php esc_html_e( 'Ignore', 'mainwp' ); ?><i class="dropdown icon"></i>
<div class="menu">
<a href="javascript:void(0)" class="mainwp-ignore-update-button item" onClick="return updatesoverview_themes_ignore_detail( '<?php echo esc_js( $theme_name ); ?>', '<?php echo esc_js( rawurlencode( $theme_upgrade['Name'] ) ); ?>', <?php echo intval( $website->id ); ?>, this, '<?php echo esc_js( rawurlencode( $last_version ) ); ?>' )"><?php esc_html_e( 'Ignore this version', 'mainwp' ); ?></a>
<a href="javascript:void(0)" class="item mainwp-ignore-globally-button" onClick="return updatesoverview_themes_ignore_all( '<?php echo esc_js( $theme_name ); ?>', '<?php echo esc_js( rawurlencode( $theme_upgrade['Name'] ) ); ?>', this, '<?php echo esc_js( rawurlencode( $last_version ) ); ?>' )"><?php esc_html_e( 'Ignore this version globally', 'mainwp' ); ?></a>
<a href="javascript:void(0)" class="mainwp-ignore-update-button item" onClick="return updatesoverview_themes_ignore_detail( '<?php echo esc_js( $theme_name ); ?>', '<?php echo esc_js( rawurlencode( $theme_upgrade['Name'] ) ); ?>', <?php echo intval( $website->id ); ?>, this, 'all_versions' )"><?php esc_html_e( 'Ignore all versions', 'mainwp' ); ?></a>
</div>
</div>
<?php endif; ?>
<?php if ( MainWP_Updates::user_can_update_themes() ) : ?>
<a href="javascript:void(0)" class="mainwp-update-now-button ui mini green button" onClick="return updatesoverview_themes_upgrade( '<?php echo esc_js( $theme_name ); ?>', <?php echo intval( $website->id ); ?> )"><?php esc_html_e( 'Update', 'mainwp' ); ?></a>
<?php endif; ?>
</td>
<?php endif; ?>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<input type="hidden" class="element_ui_view_values" elem-uid="uid_theme_updates_<?php echo esc_attr( $group_id ); ?>" total="<?php echo intval( $total_group_theme_updates ); ?>" can-update="<?php echo MainWP_Updates::user_can_update_themes() ? 1 : 0; ?>">
<?php endforeach; ?>
</tbody>
</table>
<?php else : ?>
<?php MainWP_UI::render_empty_page_placeholder( __( 'You\'re All Set!', 'mainwp' ), __( 'No updates available right now.', 'mainwp' ) ); ?>
<?php endif; ?>
<?php
}
/**
* Method render_trans_update()
*
* Render translations updates
*
* @param object $websites the websites.
* @param int $total_translation_upgrades total translation updates.
* @param array $all_groups_sites all groups of sites.
* @param array $all_groups all groups.
* @param int $site_offset_for_groups offset value.
* @param object $userExtension User Extension data.
*
* @uses \MainWP\Dashboard\MainWP_DB::fetch_object()
* @uses \MainWP\Dashboard\MainWP_DB::data_seek()
* @uses \MainWP\Dashboard\MainWP_UI::render_sorting_icons()
* @uses \MainWP\Dashboard\MainWP_UI::render_show_all_updates_button()
* @uses \MainWP\Dashboard\MainWP_Updates::user_can_update_trans()
* @uses \MainWP\Dashboard\MainWP_Updates::render_site_link_dashboard()
*/
public static function render_trans_update( $websites, $total_translation_upgrades, $all_groups_sites, $all_groups, $site_offset_for_groups, $userExtension ) { //phpcs:ignore -- NOSONAR - complex method.
$user_can_see_client = \mainwp_current_user_can( 'dashboard', 'manage_clients' );
$trustedPlugins = ! empty( $userExtension->trusted_plugins ) ? json_decode( $userExtension->trusted_plugins, true ) : array();
if ( ! is_array( $trustedPlugins ) ) {
$trustedPlugins = array();
}
$trustedThemes = json_decode( $userExtension->trusted_themes, true );
if ( ! is_array( $trustedThemes ) ) {
$trustedThemes = array();
}
?>
<?php if ( 0 < $total_translation_upgrades ) : ?>
<table class="ui tablet stackable table mainwp-manage-updates-table main-master-checkbox" id="mainwp-translations-groups-table">
<thead>
<tr>
<th scope="col" class="collapsing no-sort trigger-all-accordion"><span class="trigger-handle-arrow"><i class="caret right icon"></i><i class="caret down icon"></i></span></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting">
<div class="ui main-master checkbox">
<input type="checkbox" name=""><label><?php esc_html_e( 'Tag', 'mainwp' ); ?></label>
</div>
<?php MainWP_UI::render_sorting_icons(); ?>
</th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Updates', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col"><?php MainWP_UI::render_show_all_updates_button(); ?></th>
</tr>
</thead>
<tbody id="translations-updates-global" class="ui accordion">
<?php foreach ( $all_groups_sites as $group_id => $site_ids ) : ?>
<?php
$total_group_translation_updates = 0;
$group_name = $all_groups[ $group_id ];
?>
<tr row-uid="uid_translation_updates_<?php echo esc_attr( $group_id ); ?>" class="title main-master-checkbox">
<td class="accordion-trigger"><i class="dropdown icon"></i></td>
<td>
<div class="ui main-master checkbox">
<input type="checkbox" name="" data-group-id="<?php echo esc_attr( $group_id ); ?>">
<label for=""> <?php echo esc_html( stripslashes( $group_name ) ); ?></label>
</div>
</td>
<td total-uid="uid_translation_updates_<?php echo esc_attr( $group_id ); ?>" sort-value="0"></td>
<td class="right aligned">
<?php if ( MainWP_Updates::user_can_update_trans() ) { ?>
<a href="javascript:void(0)" btn-all-uid2="uid_translation_updates_<?php echo esc_attr( $group_id ); ?>" class="mainwp-update-selected-button ui green basic mini button" onClick="event.stopPropagation(); updatesoverview_translations_global_upgrade_all( <?php echo esc_attr( $group_id ); ?>, true ); return false;"><?php esc_html_e( 'Update Selected', 'mainwp' ); ?></a>
<a href="javascript:void(0)" btn-all-uid="uid_translation_updates_<?php echo esc_attr( $group_id ); ?>" class="mainwp-update-all-button ui green mini button" onClick="updatesoverview_translations_global_upgrade_all( <?php echo esc_attr( $group_id ); ?> ); return false;"><?php esc_html_e( 'Update All', 'mainwp' ); ?></a>
<?php } ?>
</td>
</tr>
<tr class="content main-child-checkbox">
<td colspan="4">
<table class="ui grey table mainwp-per-group-table mainwp-manage-updates-table" id="mainwp-translations-sites-table">
<thead class="mainwp-768-hide">
<tr>
<th scope="col" class="collapsing no-sort"></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Website', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Updates', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<?php if ( $user_can_see_client ) { ?>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php echo esc_html__( 'Client', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<?php } ?>
<th scope="col" ></th>
</tr>
</thead>
<tbody class="accordion" id="update_wrapper_translation_upgrades_group_<?php echo esc_attr( $group_id ); ?>" row-uid="uid_translation_updates_<?php echo esc_attr( $group_id ); ?>">
<?php foreach ( $site_ids as $site_id ) : ?>
<?php
if ( ! isset( $site_offset_for_groups[ $site_id ] ) ) {
continue;
}
$seek = $site_offset_for_groups[ $site_id ];
MainWP_DB::data_seek( $websites, $seek );
$website = MainWP_DB::fetch_object( $websites );
$translation_upgrades = json_decode( $website->translation_upgrades, true );
$total_group_translation_updates += count( $translation_upgrades );
if ( ( empty( $translation_upgrades ) ) && ( empty( $website->sync_errors ) ) ) {
continue;
}
?>
<tr class="ui title master-checkbox">
<td class="accordion-trigger"><i class="dropdown icon"></i></td>
<td>
<div class="ui master checkbox">
<input type="checkbox" name=""><label><?php MainWP_Updates::render_site_link_dashboard( $website ); ?></label>
</div>
</td>
<td sort-value="<?php echo count( $translation_upgrades ); ?>">
<strong class="mainwp-768-show"><?php esc_html_e( 'Updates:', 'mainwp' ); ?></strong> <?php echo esc_html( _n( 'Update', 'Updates', count( $translation_upgrades ), 'mainwp' ) ); ?>
</td>
<?php if ( $user_can_see_client ) { ?>
<td><a href="<?php echo 'admin.php?page=ManageClients&client_id=' . intval( $website->client_id ); ?>" data-tooltip="<?php esc_attr_e( 'Jump to the client', 'mainwp' ); ?>" data-position="right center" data-inverted="" ><?php echo esc_html( $website->client_name ); ?></a></td>
<?php } ?>
<td>
<?php if ( MainWP_Updates::user_can_update_trans() ) : ?>
<?php if ( ! empty( $translation_upgrades ) ) : ?>
<a href="javascript:void(0)" class="mainwp-update-selected-button ui green basic mini button" onClick="event.stopPropagation(); return updatesoverview_group_upgrade_translation_all( <?php echo esc_attr( $website->id ); ?>, <?php echo esc_attr( $group_id ); ?>, true )"><?php esc_html_e( 'Update Selected', 'mainwp' ); ?></a>
<a href="javascript:void(0)" class="mainwp-update-all-button ui green mini button" onClick="return updatesoverview_group_upgrade_translation_all( <?php echo esc_attr( $website->id ); ?>, <?php echo esc_attr( $group_id ); ?> )"><?php esc_html_e( 'Update All', 'mainwp' ); ?></a>
<?php endif; ?>
<?php endif; ?>
</td>
</tr>
<tr class="child-checkbox content">
<td colspan="5">
<table class="ui table mainwp-manage-updates-table" id="mainwp-translations-table">
<thead class="mainwp-768-hide">
<tr>
<th scope="col" ><?php esc_html_e( 'translationName', 'mainwp' ); ?></th>
<th scope="col" ><?php esc_html_e( 'Version', 'mainwp' ); ?></th>
<th scope="col" ><?php esc_html_e( 'Trusted', 'mainwp' ); ?></th>
<th scope="col" ></th>
</tr>
</thead>
<tbody id="wp_translation_upgrades_<?php echo esc_attr( $website->id ); ?>_group_<?php echo esc_attr( $group_id ); ?>" site_id="<?php echo esc_attr( $website->id ); ?>" site_name="<?php echo esc_attr( rawurlencode( stripslashes( $website->name ) ) ); ?>">
<?php foreach ( $translation_upgrades as $translation_upgrade ) : ?>
<?php
$translation_name = isset( $translation_upgrade['name'] ) ? $translation_upgrade['name'] : $translation_upgrade['slug'];
$translation_slug = $translation_upgrade['slug'];
?>
<tr class="mainwp-translation-update" translation_slug="<?php echo esc_attr( $translation_slug ); ?>" updated="0">
<td>
<div class="ui child checkbox">
<input type="checkbox" name="">
</div>
<?php echo esc_html( $translation_name ); ?>
<input type="hidden" id="wp_upgraded_translation_<?php echo esc_attr( $website->id ); ?>_group_<?php echo esc_attr( $group_id ); ?>_<?php echo esc_attr( $translation_slug ); ?>" value="0"/>
</td>
<td>
<strong class="mainwp-768-show"><?php esc_html_e( 'Varsion:', 'mainwp' ); ?></strong> <?php echo esc_html( $translation_upgrade['version'] ); ?>
</td>
<?php
// trusted column.
$is_trust = MainWP_Manage_Sites_Update_View::is_trans_trusted_update( $translation_upgrade, $trustedPlugins, $trustedThemes );
echo MainWP_Manage_Sites_Update_View::get_column_trusted($is_trust ); //phpcs:ignore -- NOSONAR - escaped.
?>
<td>
<?php if ( MainWP_Updates::user_can_update_trans() ) : ?>
<a href="javascript:void(0)" class="mainwp-update-now-button ui green mini button" onClick="return updatesoverview_group_upgrade_translation( <?php echo esc_attr( $website->id ); ?>, '<?php echo esc_js( $translation_slug ); ?>', <?php echo esc_attr( $group_id ); ?> )"><?php esc_html_e( 'Update', 'mainwp' ); ?></a>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<input type="hidden" class="element_ui_view_values" elem-uid="uid_translation_updates_<?php echo esc_attr( $group_id ); ?>" total="<?php echo intval( $total_group_translation_updates ); ?>" can-update="<?php echo MainWP_Updates::user_can_update_trans() ? 1 : 0; ?>">
<?php endforeach; ?>
</tbody>
</table>
<?php else : ?>
<?php MainWP_UI::render_empty_page_placeholder( __( 'You\'re All Set!', 'mainwp' ), __( 'No updates available right now.', 'mainwp' ) ); ?>
<?php endif; ?>
<?php
}
/**
* Method render_abandoned_plugins()
*
* Render abandoned plugins
*
* @param object $websites the websites.
* @param array $allPluginsOutdate All Plugins Outdate.
* @param array $all_groups_sites all groups of sites.
* @param array $all_groups all groups.
* @param int $site_offset_for_groups offset value.
* @param array $decodedDismissedPlugins all dismissed plugins.
*
* @throws \MainWP_Exception Error message.
*
* @uses \MainWP\Dashboard\MainWP_DB::fetch_object()
* @uses \MainWP\Dashboard\MainWP_DB::data_seek()
* @uses \MainWP\Dashboard\MainWP_DB::get_website_option()
* @uses \MainWP\Dashboard\MainWP_UI::render_sorting_icons()
* @uses \MainWP\Dashboard\MainWP_Updates::render_site_link_dashboard()
* @uses \MainWP\Dashboard\MainWP_Updates::user_can_ignore_updates()
*/
public static function render_abandoned_plugins( $websites, $allPluginsOutdate, $all_groups_sites, $all_groups, $site_offset_for_groups, $decodedDismissedPlugins ) { // phpcs:ignore -- NOSONAR - complex.
$str_format = esc_html__( 'Updated %s days ago', 'mainwp' );
$count_abandoned = count( $allPluginsOutdate );
?>
<?php if ( 0 < $count_abandoned ) : ?>
<table class="ui tablet stackable table mainwp-manage-updates-table" id="mainwp-abandoned-plugins-groups-table">
<thead>
<tr>
<th scope="col" class="collapsing no-sort trigger-all-accordion"><span class="trigger-handle-arrow"><i class="caret right icon"></i><i class="caret down icon"></i></span></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Tag', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Abandoned', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
</tr>
</thead>
<tbody class="ui accordion">
<?php foreach ( $all_groups_sites as $group_id => $site_ids ) : ?>
<?php
$total_group_plugins_outdate = 0;
$group_name = $all_groups[ $group_id ];
?>
<tr class="title" row-uid="uid_plugins_outdate_<?php echo esc_attr( $group_id ); ?>">
<td class="accordion-trigger"><i class="dropdown icon"></i></td>
<td><?php echo esc_html( stripslashes( $group_name ) ); ?></td>
<td total-uid="uid_plugins_outdate_<?php echo esc_attr( $group_id ); ?>" sort-value="0"></td>
</tr>
<tr class="content" row-uid="uid_plugins_outdate_<?php echo esc_attr( $group_id ); ?>">
<td colspan="3">
<table class="ui grey table mainwp-per-group-table mainwp-manage-updates-table" id="mainwp-abandoned-plugins-sites-table">
<thead class="mainwp-768-hide">
<tr>
<th scope="col" class="collapsing no-sort"></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Website', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php echo esc_html__( 'Client', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Abandoned', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
</tr>
</thead>
<tbody class="accordion">
<?php foreach ( $site_ids as $site_id ) : ?>
<?php
if ( ! isset( $site_offset_for_groups[ $site_id ] ) ) {
continue;
}
$seek = $site_offset_for_groups[ $site_id ];
MainWP_DB::data_seek( $websites, $seek );
$website = MainWP_DB::fetch_object( $websites );
$plugins_outdate = MainWP_DB::instance()->get_website_option( $website, 'plugins_outdate_info' );
$plugins_outdate = ! empty( $plugins_outdate ) ? json_decode( $plugins_outdate, true ) : array();
if ( ! is_array( $plugins_outdate ) ) {
$plugins_outdate = array();
}
if ( ! empty( $plugins_outdate ) ) {
$pluginsOutdateDismissed = MainWP_DB::instance()->get_website_option( $website, 'plugins_outdate_dismissed' );
$pluginsOutdateDismissed = ! empty( $pluginsOutdateDismissed ) ? json_decode( $pluginsOutdateDismissed, true ) : array();
if ( is_array( $pluginsOutdateDismissed ) ) {
$plugins_outdate = array_diff_key( $plugins_outdate, $pluginsOutdateDismissed );
}
if ( is_array( $decodedDismissedPlugins ) ) {
$plugins_outdate = array_diff_key( $plugins_outdate, $decodedDismissedPlugins );
}
}
$total_group_plugins_outdate += count( $plugins_outdate );
?>
<?php if ( ! empty( $plugins_outdate ) ) : ?>
<tr class="ui title master-checkbox">
<td class="accordion-trigger"><i class="dropdown icon"></i></td>
<td>
<strong class="mainwp-768-show"><?php esc_html_e( 'Website:', 'mainwp' ); ?></strong> <?php MainWP_Updates::render_site_link_dashboard( $website ); ?>
</td>
<td><a href="<?php echo 'admin.php?page=ManageClients&client_id=' . intval( $website->client_id ); ?>" data-tooltip="<?php esc_attr_e( 'Jump to the client', 'mainwp' ); ?>" data-position="right center" data-inverted="" ><?php echo esc_html( $website->client_name ); ?></a></td>
<td sort-value="<?php echo count( $plugins_outdate ); ?>">
<strong class="mainwp-768-show"><?php esc_html_e( 'Abandoned:', 'mainwp' ); ?></strong> <?php echo count( $plugins_outdate ); ?> <?php echo esc_html( _n( 'Plugin', 'Plugins', count( $plugins_outdate ), 'mainwp' ) ); ?>
</td>
</tr>
<tr class="child-checkbox content">
<td colspan="4">
<table class="ui mainwp-manage-updates-table table" id="mainwp-abandoned-plugins-table">
<thead class="mainwp-768-hide">
<tr>
<th scope="col" ></th>
<th scope="col" ><?php esc_html_e( 'Plugin', 'mainwp' ); ?></th>
<th scope="col" ><?php esc_html_e( 'Version', 'mainwp' ); ?></th>
<th scope="col" ><?php esc_html_e( 'Last Update', 'mainwp' ); ?></th>
<th scope="col" class="no-sort"></th>
</tr>
</thead>
<tbody site_id="<?php echo esc_attr( $website->id ); ?>" site_name="<?php echo esc_attr( rawurlencode( stripslashes( $website->name ) ) ); ?>">
<?php foreach ( $plugins_outdate as $slug => $plugin_outdate ) : ?>
<?php
$plugin_name = rawurlencode( $slug );
$now = new \DateTime();
$last_updated = $plugin_outdate['last_updated'];
$plugin_last_updated_date = new \DateTime( '@' . $last_updated );
$diff_in_days = $now->diff( $plugin_last_updated_date )->format( '%a' );
$outdate_notice = sprintf( $str_format, $diff_in_days );
?>
<tr dismissed="0">
<td class="collapsing"><?php echo MainWP_System_Utility::get_plugin_icon( dirname( $slug ) ); // phpcs:ignore WordPress.Security.EscapeOutput ?></td>
<td>
<a href="<?php echo esc_url( admin_url() ) . 'plugin-install.php?tab=plugin-information&wpplugin=' . intval( $website->id ) . '&plugin=' . esc_html( dirname( $slug ) ) . '&url=' . ( isset( $plugin_outdate['PluginURI'] ) ? esc_html( rawurlencode( $plugin_outdate['PluginURI'] ) ) : '' ) . '&name=' . esc_html( rawurlencode( $plugin_outdate['Name'] ) ); ?>" target="_blank" class="open-plugin-details-modal"><?php echo esc_html( $plugin_outdate['Name'] ); ?></a>
<input type="hidden" id="wp_dismissed_plugin_<?php echo esc_attr( $website->id ); ?>_<?php echo esc_attr( $plugin_name ); ?>" value="0"/>
</td>
<td><strong class="mainwp-768-show"><?php esc_html_e( 'Version:', 'mainwp' ); ?></strong> <?php echo esc_html( $plugin_outdate['Version'] ); ?></td>
<td><strong class="mainwp-768-show"><?php esc_html_e( 'Last Update:', 'mainwp' ); ?></strong> <?php echo esc_html( $outdate_notice ); ?></td>
<td id="wp_dismissbuttons_plugin_<?php echo esc_attr( $website->id ); ?>_<?php echo esc_attr( $plugin_name ); ?>">
<?php if ( MainWP_Updates::user_can_ignore_updates() ) { ?>
<a href="javascript:void(0)" class="ui mini button" onClick="return updatesoverview_plugins_dismiss_outdate_detail( '<?php echo esc_js( $plugin_name ); ?>', '<?php echo esc_js( rawurlencode( $plugin_outdate['Name'] ) ); ?>', <?php echo intval( $website->id ); ?>, this )"><?php esc_html_e( 'Ignore Now', 'mainwp' ); ?></a>
<?php } ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<?php endif; ?>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<input type="hidden" class="element_ui_view_values" elem-uid="uid_plugins_outdate_<?php echo esc_attr( $group_id ); ?>" total="<?php echo intval( $total_group_plugins_outdate ); ?>" can-update="0">
<?php endforeach; ?>
</tbody>
</table>
<?php else : ?>
<?php MainWP_UI::render_empty_page_placeholder( __( 'You\'re All Set!', 'mainwp' ), __( 'No abandoned plugins detected.', 'mainwp' ) ); ?>
<?php endif; ?>
<?php
}
/**
* Method render_abandoned_themes()
*
* Render abandoned themes
*
* @param object $websites the websites.
* @param array $allThemesOutdate All Themes Outdate.
* @param array $all_groups_sites all groups of sites.
* @param array $all_groups all groups.
* @param int $site_offset_for_groups offset value.
* @param array $decodedDismissedThemes all dismissed themes.
*
* @throws \MainWP_Exception Error message.
*
* @uses \MainWP\Dashboard\MainWP_DB::fetch_object()
* @uses \MainWP\Dashboard\MainWP_DB::data_seek()
* @uses \MainWP\Dashboard\MainWP_DB::get_website_option()
* @uses \MainWP\Dashboard\MainWP_UI::render_sorting_icons()
* @uses \MainWP\Dashboard\MainWP_Updates::render_site_link_dashboard()
* @uses \MainWP\Dashboard\MainWP_Updates::user_can_ignore_updates()
*/
public static function render_abandoned_themes( $websites, $allThemesOutdate, $all_groups_sites, $all_groups, $site_offset_for_groups, $decodedDismissedThemes ) { // phpcs:ignore -- NOSONAR - complex.
$str_format = esc_html__( 'Updated %s days ago', 'mainwp' );
$count_abandoned = count( $allThemesOutdate );
?>
<?php if ( 0 < $count_abandoned ) : ?>
<table class="ui tablet stackable table mainwp-manage-updates-table" id="mainwp-abandoned-themes-groups-table">
<thead>
<tr>
<th scope="col" class="collapsing no-sort trigger-all-accordion"><span class="trigger-handle-arrow"><i class="caret right icon"></i><i class="caret down icon"></i></span></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Tag', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Abandoned', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
</tr>
</thead>
<tbody class="ui accordion">
<?php foreach ( $all_groups_sites as $group_id => $site_ids ) : ?>
<?php
$total_group_themes_outdate = 0;
$group_name = $all_groups[ $group_id ];
?>
<tr row-uid="uid_themes_outdate_<?php echo esc_attr( $group_id ); ?>" class="title">
<td class="accordion-trigger"><i class="dropdown icon"></i></td>
<td><?php echo esc_html( stripslashes( $group_name ) ); ?></td>
<td total-uid="uid_themes_outdate_<?php echo esc_attr( $group_id ); ?>" sort-value="0"></td>
</tr>
<tr class="content" row-uid="uid_themes_outdate_<?php echo esc_attr( $group_id ); ?>">
<td colspan="3">
<table class="ui grey table manage-updates-item-table mainwp-manage-updates-table mainwp-per-group-table" id="mainwp-abandoned-themes-sites-table">
<thead class="mainwp-768-hide">
<tr>
<th scope="col" class="collapsing no-sort"></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Website', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php echo esc_html__( 'Client', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
<th scope="col" class="indicator-accordion-sorting handle-accordion-sorting"><?php esc_html_e( 'Abandoned', 'mainwp' ); ?><?php MainWP_UI::render_sorting_icons(); ?></th>
</tr>
</thead>
<tbody class="accordion">
<?php foreach ( $site_ids as $site_id ) : ?>
<?php
if ( ! isset( $site_offset_for_groups[ $site_id ] ) ) {
continue;
}
$seek = $site_offset_for_groups[ $site_id ];
MainWP_DB::data_seek( $websites, $seek );
$website = MainWP_DB::fetch_object( $websites );
$themes_outdate = MainWP_DB::instance()->get_website_option( $website, 'themes_outdate_info' );
$themes_outdate = ! empty( $themes_outdate ) ? json_decode( $themes_outdate, true ) : array();
if ( ! is_array( $themes_outdate ) ) {
$themes_outdate = array();
}
if ( ! empty( $themes_outdate ) ) {
$themesOutdateDismissed = MainWP_DB::instance()->get_website_option( $website, 'themes_outdate_dismissed' );
$themesOutdateDismissed = ! empty( $themesOutdateDismissed ) ? json_decode( $themesOutdateDismissed, true ) : array();
if ( is_array( $themesOutdateDismissed ) ) {
$themes_outdate = array_diff_key( $themes_outdate, $themesOutdateDismissed );
}
if ( is_array( $decodedDismissedThemes ) ) {
$themes_outdate = array_diff_key( $themes_outdate, $decodedDismissedThemes );
}
}
$total_group_themes_outdate += count( $themes_outdate );
?>
<?php if ( ! empty( $themes_outdate ) ) : ?>
<tr class="ui title">
<td class="accordion-trigger"><i class="dropdown icon"></i></td>
<td>
<strong class="mainwp-768-show"><?php esc_html_e( 'Website:', 'mainwp' ); ?></strong> <?php MainWP_Updates::render_site_link_dashboard( $website ); ?>
</td>
<td><a href="<?php echo 'admin.php?page=ManageClients&client_id=' . intval( $website->client_id ); ?>" data-tooltip="<?php esc_attr_e( 'Jump to the client', 'mainwp' ); ?>" data-position="right center" data-inverted="" ><?php echo esc_html( $website->client_name ); ?></a></td>
<td sort-value="<?php echo count( $themes_outdate ); ?>">
<strong class="mainwp-768-show"><?php esc_html_e( 'Abandoned:', 'mainwp' ); ?></strong> <?php echo count( $themes_outdate ); ?> <?php echo esc_html( _n( 'Theme', 'Themes', count( $themes_outdate ), 'mainwp' ) ); ?>
</td>
</tr>
<tr class="content">
<td colspan="4">
<table class="ui mainwp-manage-updates-item-table mainwp-manage-updates-table table" id="mainwp-abandoned-themes-table">
<thead class="mainwp-768-hide">
<tr>
<th scope="col" ><?php esc_html_e( 'Theme', 'mainwp' ); ?></th>
<th scope="col" ><?php esc_html_e( 'Version', 'mainwp' ); ?></th>
<th scope="col" ><?php esc_html_e( 'Last Update', 'mainwp' ); ?></th>
<th scope="col" class="no-sort"></th>
</tr>
</thead>
<tbody site_id="<?php echo esc_attr( $website->id ); ?>" site_name="<?php echo esc_attr( rawurlencode( stripslashes( $website->name ) ) ); ?>">
<?php foreach ( $themes_outdate as $slug => $theme_outdate ) : ?>
<?php
$theme_name = rawurlencode( $slug );
$now = new \DateTime();
$last_updated = $theme_outdate['last_updated'];
$theme_last_updated_date = new \DateTime( '@' . $last_updated );
$diff_in_days = $now->diff( $theme_last_updated_date )->format( '%a' );
$outdate_notice = sprintf( $str_format, $diff_in_days );
?>
<tr dismissed="0">
<td>
<?php echo MainWP_System_Utility::get_theme_icon( $slug ) . '&nbsp;&nbsp;&nbsp;&nbsp;' . esc_html( $theme_outdate['Name'] ); // phpcs:ignore WordPress.Security.EscapeOutput ?>
<input type="hidden" id="wp_dismissed_theme_<?php echo esc_attr( $website->id ); ?>_<?php echo esc_attr( $theme_name ); ?>" value="0"/>
</td>
<td><strong class="mainwp-768-show"><?php esc_html_e( 'Version:', 'mainwp' ); ?></strong> <?php echo esc_html( $theme_outdate['Version'] ); ?></td>
<td><strong class="mainwp-768-show"><?php esc_html_e( 'Last Update:', 'mainwp' ); ?></strong> <?php echo esc_html( $outdate_notice ); ?></td>
<td id="wp_dismissbuttons_theme_<?php echo esc_attr( $website->id ); ?>_<?php echo esc_attr( $theme_name ); ?>">
<?php if ( MainWP_Updates::user_can_ignore_updates() ) { ?>
<a href="javascript:void(0)" class="ui mini button" onClick="return updatesoverview_themes_dismiss_outdate_detail( '<?php echo esc_js( $theme_name ); ?>', '<?php echo esc_js( rawurlencode( $theme_outdate['Name'] ) ); ?>', <?php echo intval( $website->id ); ?>, this )"><?php esc_html_e( 'Ignore Now', 'mainwp' ); ?></a>
<?php } ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<?php endif; ?>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<input type="hidden" class="element_ui_view_values" elem-uid="uid_themes_outdate_<?php echo esc_attr( $group_id ); ?>" total="<?php echo intval( $total_group_themes_outdate ); ?>" can-update="0">
<?php endforeach; ?>
</tbody>
</table>
<?php else : ?>
<?php MainWP_UI::render_empty_page_placeholder( __( 'You\'re All Set!', 'mainwp' ), __( 'No abandoned themes detected.', 'mainwp' ) ); ?>
<?php endif; ?>
<?php
}
}