HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/itt.kaunokolegija.lt/wp-content/plugins/pdf-embedder/src/Viewer/ViewerInterface.php
<?php

namespace PDFEmbedder\Viewer;

/**
 * Interface for the PDF viewer.
 *
 * @since 4.8.0
 */
interface ViewerInterface {

	/**
	 * Render the PDF viewer.
	 *
	 * @since 4.8.0
	 */
	public function render(): string;

	/**
	 * Inline scripts and styles for the shortcode.
	 *
	 * @since 4.8.0
	 */
	public function enqueue_inline_assets();

	/**
	 * Pass the options needed for the viewer.
	 *
	 * @since 4.8.0
	 *
	 * @param array $atts Attributes.
	 */
	public function set_options( array $atts = [] );
}