# woocommerce-pos/1.10.18/includes/Admin/Plugins.php

WCPOS – Point of Sale (POS) plugin for WooCommerce, version 1.10.18. 118 lines.

- Page: https://pluginprobe.com/plugins/woocommerce-pos/1.10.18/code/includes/Admin/Plugins.php
- Raw: https://pluginprobe.com/plugins/woocommerce-pos/1.10.18/raw/includes/Admin/Plugins.php
- Modified: 2026-08-25T07:52:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/woocommerce-pos/1.10.18/code/includes/Admin/Plugins.php#L10-L20`.

```php
<?php
/**
 * WP Plugin Updates.
 *
 * @author   Paul Kilmurray <paul@kilbot.com>
 *
 * @see     http://wcpos.com
 * @package WCPOS\WooCommercePOS
 */

namespace WCPOS\WooCommercePOS\Admin;

use WCPOS\WooCommercePOS\Services\Analytics;
use const WCPOS\WooCommercePOS\PLUGIN_FILE;
use const WCPOS\WooCommercePOS\VERSION;

/**
 * Plugins class.
 */
class Plugins {
	/**
	 * Constructor.
	 */
	public function __construct() {
		add_filter( 'plugin_action_links_' . PLUGIN_FILE, array( $this, 'plugin_action_links' ) );
		add_action( 'in_plugin_update_message-' . PLUGIN_FILE, array( $this, 'plugin_update_message' ), 10, 2 );
	}

	/**
	 * Filters the list of action links displayed for a specific plugin in the Plugins list table.
	 *
	 * @param string[] $actions An array of plugin action links.
	 */
	public function plugin_action_links( array $actions ): array {
		$settings = array(
			'settings' => '<a href="' . admin_url( 'admin.php?page=woocommerce-pos-settings' ) . '">' .
			// translators: Plugin row action link that opens WCPOS settings.
			__( 'Settings', 'woocommerce-pos' ) . '</a>',
		);

		// Add "Upgrade to Pro" link if Pro is not installed.
		if ( ! defined( 'WCPOS\WooCommercePOSPro\VERSION' ) ) {
			Analytics::instance()->capture_once(
				'upgrade_cta_viewed',
				array(
					'placement' => 'plugin_row_action',
				),
				'plugin_row_action',
				Analytics::AMBIENT_IMPRESSION_TTL
			);

			$actions['upgrade'] = '<a href="https://wcpos.com/pro" target="_blank" rel="noopener noreferrer" data-wcpos-upgrade-placement="plugin_row_action" style="color: #d63638; font-weight: 600;">' .
				/* translators: Plugin admin screen label or notice for WCPOS. */
				__( 'Upgrade to Pro', 'woocommerce-pos' ) . '</a>';
		}

		return $settings + $actions;
	}

	/**
	 * Fires at the end of the update message container in each row of the plugins list table.
	 * Thanks to: http://andidittrich.de/2015/05/howto-upgrade-notice-for-wordpress-plugins.html.
	 *
	 * @param array  $plugin_data An array of plugin metadata.
	 * @param object $r           An object of metadata about the available plugin update.
	 *
	 * @since 2.8.0
	 */
	public function plugin_update_message( $plugin_data, $r ): void {
		// Check if updating to v1.8.x from an earlier version.
		$new_version     = isset( $r->new_version ) ? $r->new_version : '';
		$current_version = VERSION;

		// Show major update notice when upgrading to 1.8.x from earlier versions.
		// @phpstan-ignore-next-line.
		if ( version_compare( $new_version, '1.8.0', '>=' ) && version_compare( $current_version, '1.8.0', '<' ) ) {
			$this->show_major_update_notice();
		}

		// Show any additional upgrade notice from readme.txt.
		if ( isset( $r->upgrade_notice ) && \strlen( trim( $r->upgrade_notice ) ) > 0 ) {
			echo '<p style="background-color: #d54e21; padding: 10px; color: #f9f9f9; margin-top: 10px"><strong>' .
				 // translators: Prefix for an important plugin update notice in the WordPress plugins screen.
				 esc_html__( 'Important:', 'woocommerce-pos' ) . '</strong> ';
			echo esc_html( $r->upgrade_notice ), '</p>';
		}
	}

	/**
	 * Display a major update notice for v1.8.
	 */
	private function show_major_update_notice(): void {
		?>
		<hr style="margin: 15px 0; border: 0; border-top: 1px solid #ffb900;">
		<div style="background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%); border: 1px solid #ffb900; border-radius: 4px; padding: 12px 15px; margin-top: 10px;">
			<p style="margin: 0 0 10px 0; font-weight: 600; color: #856404; font-size: 14px;">
				<span class="dashicons dashicons-warning" style="color: #ffb900; margin-right: 5px;"></span>
				<?php /* translators: Plugin admin screen label or notice for WCPOS. */ esc_html_e( 'Major Update', 'woocommerce-pos' ); ?>
			</p>
			<p style="margin: 0 0 10px 0; color: #856404;">
				<?php esc_html_e( 'Update when you have time to test the POS. You can rollback to the previous version if needed.', 'woocommerce-pos' ); ?>
			</p>
			<p style="margin: 0; padding: 10px; background-color: rgba(255,255,255,0.5); border-radius: 3px; color: #0073aa;">
				<span class="dashicons dashicons-star-filled" style="color: #ffb900; margin-right: 5px;"></span>
				<strong><?php /* translators: Plugin admin screen label or notice for WCPOS. */ esc_html_e( 'Pro Users:', 'woocommerce-pos' ); ?></strong>
				<?php
				printf(
					/* translators: %s: URL to My Account page */
					esc_html__( 'WCPOS Pro is now a standalone plugin. Download the latest version from %s', 'woocommerce-pos' ),
					'<a href="https://wcpos.com/my-account" target="_blank" rel="noopener noreferrer" style="color: #0073aa; text-decoration: underline;">wcpos.com/my-account</a>'
				);
				?>
			</p>
		</div>
		<?php
	}
}

```
