}
if ($media['type'] == self::IMAGE) {
- $body .= "\n" . Images::getBBCodeByUrl($media['url'], $media['preview'], $media['description']);
+ $body .= "\n" . Images::getBBCodeByUrl($media['url'], $media['preview'], $media['description'] ?? '');
} elseif ($media['type'] == self::AUDIO) {
$body .= "\n[audio]" . $media['url'] . "[/audio]\n";
} elseif ($media['type'] == self::VIDEO) {
}
$this->logger->info('upload done');
- $this->return(200, "\n\n" . Images::getBBCodeByResource($resource_id, $owner['nickname'], $preview, $image->getExt(), '') . "\n\n");
+ $this->return(200, "\n\n" . Images::getBBCodeByResource($resource_id, $owner['nickname'], $preview, $image->getExt()) . "\n\n");
}
/**
* @param string $description
* @return string
*/
- public static function getBBCodeByResource(string $resource_id, string $nickname, int $preview, string $ext, string $description = null): string
+ public static function getBBCodeByResource(string $resource_id, string $nickname, int $preview, string $ext, string $description = ''): string
{
return self::getBBCodeByUrl(
DI::baseUrl() . '/photos/' . $nickname . '/image/' . $resource_id,
* @param string $description
* @return string
*/
- public static function getBBCodeByUrl(string $photo, string $preview = null, string $description = null): string
+ public static function getBBCodeByUrl(string $photo, string $preview = null, string $description = ''): string
{
if (!empty($preview)) {
- if (!is_null($description)) {
- return '[url=' . $photo . '][img=' . $preview . ']' . $description . '[/img][/url]';
- } else {
- return '[url=' . $photo . '][img]' . $preview . '[/img][/url]';
- }
+ return '[url=' . $photo . '][img=' . $preview . ']' . $description . '[/img][/url]';
}
- if (!is_null($description)) {
- return '[img=' . $photo . ']' . $description . '[/img]';
- } else {
- return '[img]' . $photo . '[/img]';
- }
+ return '[img=' . $photo . ']' . $description . '[/img]';
}
}