%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Message/
Upload File :
Create Path :
Current File : //var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Message/Plugin.php

<?php

namespace AC\Message;

use AC\Message;
use AC\View;

class Plugin extends Message {

	/**
	 * @var string
	 */
	protected $plugin_basename;

	/**
	 * @var string
	 */
	protected $icon;

	/**
	 * @param string $message
	 * @param string $plugin_basename
	 */
	public function __construct( $message, $plugin_basename ) {
		parent::__construct( $message );

		$this->plugin_basename = $plugin_basename;
		$this->type = self::WARNING;
		$this->icon = $this->get_icon_by_current_type();
	}

	public function register() {
		add_action( 'after_plugin_row_' . $this->plugin_basename, [ $this, 'display' ], 11 );
	}

	public function render() {
		switch ( $this->type ) {
			case self::SUCCESS :
				$class = 'updated-message notice-success';

				break;
			case self::INFO :
				$class = self::WARNING;

				break;
			default:
				$class = $this->type;
		}

		$is_plugin_active = is_multisite() && is_network_admin()
			? is_plugin_active_for_network( $this->plugin_basename )
			: is_plugin_active( $this->plugin_basename );

		$status = $is_plugin_active
			? 'active'
			: 'inactive';

		$data = [
			'plugin_basename' => $this->plugin_basename,
			'icon'            => $this->icon,
			'class'           => $class,
			'message'         => $this->message,
			'type'            => $this->type,
			'status'          => $status,
		];

		$view = new View( $data );
		$view->set_template( 'message/plugin' );

		return $view->render();
	}

	/**
	 * @return string
	 */
	protected function get_icon_by_current_type() {
		$mapping = [
			self::SUCCESS => '\f147',
			self::WARNING => '\f348',
			self::ERROR   => '\f534',
			self::INFO    => '\f463',
		];

		if ( ! isset( $mapping[ $this->type ] ) ) {
			return false;
		}

		return $mapping[ $this->type ];
	}

	/**
	 * Set the icon of this notice
	 *
	 * @param string $icon
	 *
	 * @return $this
	 */
	public function set_icon( $icon ) {
		$this->icon = $icon;

		return $this;
	}

}

Zerion Mini Shell 1.0