golden hour
/home/godaofbq/redlightsquared.com/wp-content/plugins/pdf-embedder/src/Viewer
⬆️ Go Up
Upload
File/Folder
Size
Actions
Viewer.php
3.02 KB
Del
OK
ViewerInterface.php
510 B
Del
OK
Edit: 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 = [] ); }
Save