mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
4f75591060
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
16 lines
460 B
PHP
16 lines
460 B
PHP
<?php
|
|
|
|
class SafebooruBridge extends GelbooruBridge
|
|
{
|
|
const MAINTAINER = 'mitsukarenai';
|
|
const NAME = 'Safebooru';
|
|
const URI = 'https://safebooru.org/';
|
|
const DESCRIPTION = 'Returns images from given page';
|
|
|
|
protected function buildThumbnailURI($element)
|
|
{
|
|
$regex = '/\.\w+$/';
|
|
return $this->getURI() . 'thumbnails/' . $element->directory
|
|
. '/thumbnail_' . preg_replace($regex, '.jpg', $element->image);
|
|
}
|
|
}
|