mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 17:45:40 +03:00
4f75591060
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
15 lines
401 B
PHP
15 lines
401 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;
|
|
}
|
|
}
|