mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
14 lines
367 B
PHP
14 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;
|
|
}
|
|
}
|