PDF rausgenommen

This commit is contained in:
aschwarz
2023-01-23 11:03:31 +01:00
parent 82d562a322
commit a6523903eb
28078 changed files with 4247552 additions and 2 deletions

View File

@ -0,0 +1,28 @@
<?php
/**
* Deprecated functions.
*
* @package AMP
*/
/**
* Load classes for FasterImage.
*
* @deprecated This is obsolete now that there is an autoloader.
*/
function amp_load_fasterimage_classes() {
_deprecated_function( __FUNCTION__, '0.6' );
}
/**
* Get FasterImage client for user agent.
*
* @deprecated This function is no longer used in favor of just instantiating the class.
*
* @param string $user_agent User Agent.
* @return \FasterImage\FasterImage Instance.
*/
function amp_get_fasterimage_client( $user_agent ) {
_deprecated_function( __FUNCTION__, '1.0' );
return new FasterImage\FasterImage( $user_agent );
}