rss-bridge/bridges/TbibBridge.php
Dag 4f75591060
Reformat codebase v4 (#2872)
Reformat code base to PSR12

Co-authored-by: rssbridge <noreply@github.com>
2022-07-01 15:10:30 +02:00

16 lines
445 B
PHP

<?php
class TbibBridge extends GelbooruBridge
{
const MAINTAINER = 'mitsukarenai';
const NAME = 'Tbib';
const URI = 'https://tbib.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);
}
}