📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 06:39:59
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-user-manager
/
includes
/
wpum-upgrades
/
views
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-user-manager/includes/wpum-upgrades/views
🔄 Refresh
✏️
Editing: plugins-update-section.php
Writable
<?php /* @var WPUM_Updates $wpum_updates */ $plugins = $wpum_updates->get_updates( 'plugin' ); if ( empty( $plugins ) ) { return; } ob_start(); foreach ( $plugins as $plugin_data ) { if ( 'active' != $plugin_data['Status'] || 'add-on' != $plugin_data['Type'] ) { continue; } $plugin_name = $plugin_data['Name']; $author_name = $plugin_data['Author']; // Link the plugin name to the plugin URL if available. if ( ! empty( $plugin_data['PluginURI'] ) ) { $plugin_name = sprintf( '<a href="%s" title="%s">%s</a> (%s)', esc_url( $plugin_data['PluginURI'] ), esc_attr__( 'Visit plugin homepage', 'wp-user-manager' ), $plugin_name, esc_html( $plugin_data['Version'] ) ); } // Link the author name to the author URL if available. if ( ! empty( $plugin_data['AuthorURI'] ) ) { $author_name = sprintf( '<a href="%s" title="%s">%s</a>', esc_url( $plugin_data['AuthorURI'] ), esc_attr__( 'Visit author homepage', 'wp-user-manager' ), $author_name ); } ?> <tr <?php echo( true !== $plugin_data['License'] ? 'data-tooltip="' . __( 'Unlicensed addons cannot be updated. Please purchase or renew a valid license.', 'wp-user-manager' ) . '"' : '' ); ?>> <td><?php echo wp_kses( $plugin_name, wp_kses_allowed_html( 'post' ) ); ?></td> <td> <?php echo ( true === $plugin_data['License'] ) ? '<span class="dashicons dashicons-yes"></span>' . __( 'Licensed', 'wp-user-manager' ) : '<span class="dashicons dashicons-no-alt"></span>' . __( 'Unlicensed', 'wp-user-manager' ); echo sprintf( ' – %s – %s', sprintf( _x( 'by %s', 'by author', 'wp-user-manager' ), wp_kses( $author_name, wp_kses_allowed_html( 'post' ) ) ), sprintf( __( '(Latest Version: %s)', 'wp-user-manager' ), $plugin_data['update']->new_version ) ); ?> </td> </tr> <?php } echo sprintf( '<table><tbody>%s</tbody></table>', ob_get_clean() ); ?>
💾 Save Changes
❌ Cancel