MediaWiki  REL1_24
MockBitmapHandler.php
Go to the documentation of this file.
00001 <?php
00024 class MockBitmapHandler extends BitmapHandler {
00025     function doTransform( $image, $dstPath, $dstUrl, $params, $flags = 0 ) {
00026         return MockImageHandler::doFakeTransform( $this, $image, $dstPath, $dstUrl, $params, $flags );
00027     }
00028 
00029     function doClientImage( $image, $scalerParams ) {
00030             return $this->getClientScalingThumbnailImage( $image, $scalerParams );
00031     }
00032 }