?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/cryptoimpot.fr/wp-content/plugins/cookiebot/src/settings/templates/



?? Go up: /home/webdevt/www/cryptoimpot.fr/wp-content/plugins/cookiebot/src/settings

?? Viewing: Header.php

<?php

namespace cybot\cookiebot\settings\templates;

use cybot\cookiebot\lib\Cookiebot_WP;
use InvalidArgumentException;
use function cybot\cookiebot\lib\asset_url;
use function cybot\cookiebot\lib\include_view;
use function cybot\cookiebot\lib\logo_url;

class Header {


	/**
	 * @throws InvalidArgumentException
	 */
	public function display() {
		$args = array(
			'cookiebot_logo' => logo_url(),
		);

		$style_sheets = array(
			array( 'cookiebot-main-css', 'css/backend/cookiebot_admin_main.css' ),
		);

		foreach ( $style_sheets as $style ) {
			wp_enqueue_style(
				$style[0],
				asset_url( $style[1] ),
				null,
				Cookiebot_WP::COOKIEBOT_PLUGIN_VERSION
			);
		}

		$args['days_left'] = Cookiebot_WP::get_trial_days_left();

		include_view( 'admin/common/templates/header.php', $args );
	}
}


??

??