Automator_Notifications::show_notifications()


Source Source

File: src/core/admin/notifications/notifications.php

	public function show_notifications() {
		$notifications = $this->get_active_notifications();
		$dismissed = $this->get_dismissed_notifications();
		wp_localize_script(
			'uap-admin',
			'uapNotifications',
			array(
				'itemsCount' => absint( count( $notifications ) ),
				'lastIndex'  => absint( count( $notifications ) ),
			)
		);
		require_once UA_ABSPATH . 'src/core/admin/notifications/views/banner.php';
	}