ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF  x x ?? C         ?? C   ?à   " ??     ?? μ  } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú??     ?? μ   w !1AQ aq"2?B‘?±á #3Rebr?{ gilour

File "ListviewNotice.php"

Full Path: /home/zcziejy/ryadselyen/shortpixel-image-optimiser/class/Model/AdminNotices/ListviewNotice.php
File size: 2.09 KB
MIME-type: text/x-php
Charset: utf-8

<?php
namespace ShortPixel\Model\AdminNotices;

if ( ! defined( 'ABSPATH' ) ) {
 exit; // Exit if accessed directly.
}

use ShortPixel\ShortPixelLogger\ShortPixelLogger as Log;

class ListviewNotice extends \ShortPixel\Model\AdminNoticeModel
{
	protected $key = 'MSG_LISTVIEW_ACTIVE';

	public function __construct()
	{
		 $this->include_screens[] = 'upload';
		 parent::__construct();
	}

	/*public function load()
	{
		 parent::load();
		 // Reset this notice even when dismissed when condition changed.
		  if ($this->isDismissed() && $this->checkReset() === true)
			{
				$this->reset();
			}
	} */

	protected function checkTrigger()
	{
		// Don't check for this, when not on this screen.
		$screen_id = \wpSPIO()->env()->screen_id;
		if ($screen_id !== 'upload')
		{
			return false;
		}

		if (! function_exists('wp_get_current_user') )
		{
			return false;

		}

			$viewMode = get_user_option('media_library_mode', get_current_user_id() );

			if ($viewMode === "" || strlen($viewMode) == 0)
			{
					// If nothing is set, set it for them.
						update_user_option( get_current_user_id(), 'media_library_mode', 'list' );
					return false;
			}
			elseif ($viewMode !== "list")
			{
					return true;
			}
			else
			{
				if (is_object($this->getNoticeObj()))
					$this->reset();
			}

			return false;
	}

	protected function checkReset()
	{
		if (! function_exists('wp_get_current_user') )
		{
			return false;

		}

			$current_user = wp_get_current_user();
			$currentUserID = $current_user->ID;
			$viewMode = get_user_meta($currentUserID, "wp_media_library_mode", true);

			if ($viewMode == 'list')
			{
				 return true;
			}

			return false;
	}


	protected function getMessage()
	{

		$message = sprintf(__('Now you can see ShortPixel Image Optimizer\'s actions and optimization data in Grid view too! Click on any image below and you can see the ShortPixel actions and menus in the popup that opens. However, the list view provides a better experience. Click now to %sswitch to the list view%s. ', 'shortpixel-image-optimiser'), '<a href="' . admin_url('upload.php?mode=list') . '">','</a>');

		return $message;

	}
}