| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/ict/wp-content/plugins/pdf-embedder/deprecated/ |
Upload File : |
<?php
/**
* Class Core_PDF_Embedder.
* Don't use it, it will be removed in the near future.
*
* @since 1.0.0
* @deprecated {VERSION}
*/
/**
* Class Core_PDF_Embedder.
* Don't use it, it will be removed in the near future.
*
* @since 1.0.0
* @deprecated {VERSION}
*/
class Core_PDF_Embedder {
/**
* Singleton Instance.
*
* @since 4.6.3
*
* @var Core_PDF_Embedder
*/
public static $instance;
/**
* Get the plugin instance.
*
* @since 1.0.0
*
* @return Core_PDF_Embedder
*/
public static function get_instance(): Core_PDF_Embedder {
if ( self::$instance === null ) {
self::$instance = new self();
}
return self::$instance;
}
}
/**
* PDF Embedder Basic Embedder.
* DO NOT USE IT. This class will be removed soon.
*
* @since 1.0.0
* @deprecated {VERSION}
*/
final class PDF_Embedder_Basic extends Core_PDF_Embedder {
}
/**
* Global accessor function to singleton instance.
* This function will soon be removed, do not use it!
*
* @since 1.0.0
* @deprecated {VERSION}
*
* @return Core_PDF_Embedder
*/
function pdfembPDFEmbedder() {
return Core_PDF_Embedder::get_instance();
}