diff --git a/bridges/Vk2Bridge.php b/bridges/Vk2Bridge.php index 0bc0879f..6fecba84 100644 --- a/bridges/Vk2Bridge.php +++ b/bridges/Vk2Bridge.php @@ -168,6 +168,12 @@ class Vk2Bridge extends BridgeAbstract $ret .= "* {$text}: {$votes} ({$rate}%)
"; } $ret .= '

'; + } elseif ($attachment['type'] == 'album') { + $album = $attachment['album']; + $url = "https://vk.com/album{$album['owner_id']}_{$album['id']}"; + $title = 'Альбом: ' . $album['title']; + $photo = $this->getImageURLWithLargestWidth($album['thumb']['sizes']); + $ret .= "

{$title}
{$title}

"; } elseif (!in_array($attachment['type'], ['video', 'audio', 'doc'])) { $ret .= "

Unknown attachment type: {$attachment['type']}

"; }