mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-01-17 22:28:22 +01:00
15 lines
367 B
PHP
15 lines
367 B
PHP
<?php
|
|
|
|
class MspabooruBridge extends GelbooruBridge {
|
|
|
|
const MAINTAINER = 'mitsukarenai';
|
|
const NAME = 'Mspabooru';
|
|
const URI = 'https://mspabooru.com/';
|
|
const DESCRIPTION = 'Returns images from given page';
|
|
|
|
protected function buildThumbnailURI($element){
|
|
return $this->getURI() . 'thumbnails/' . $element->directory
|
|
. '/thumbnail_' . $element->image;
|
|
}
|
|
}
|