openvk/Web/Presenters/templates/Photos/Album.xml

54 lines
2 KiB
XML
Raw Normal View History

2020-06-07 19:04:43 +03:00
{extends "../@layout.xml"}
{block title}{_album} {$album->getName()}{/block}
2020-06-07 19:04:43 +03:00
{block header}
2022-04-24 08:06:45 +03:00
{var $isClub = ($album->getOwner() instanceof openvk\Web\Models\Entities\Club)}
2020-06-07 19:04:43 +03:00
<a href="{$album->getOwner()->getURL()}">
{$album->getOwner()->getCanonicalName()}
</a>
{if $isClub}
2022-08-09 09:37:08 +03:00
» <a href="/albums{$album->getOwner()->getId() * -1}">{_albums}</a>
2020-06-07 19:04:43 +03:00
{else}
2022-08-09 09:37:08 +03:00
» <a href="/albums{$album->getOwner()->getId()}">{_albums}</a>
2020-06-07 19:04:43 +03:00
{/if}
» {$album->getName()}
{/block}
{block content}
<a href="/album{$album->getPrettyId()}">
{* TODO: Добавить склонения *}
<b>{$album->getPhotosCount()} {_photos}</b>
2020-06-07 19:04:43 +03:00
</a>
{if !is_null($thisUser) && $album->canBeModifiedBy($thisUser) && !$album->isCreatedBySystem()}
&nbsp;|&nbsp;
2022-08-09 09:37:08 +03:00
<a href="/photos/upload?album={$album->getPrettyId()}">{_upload_photo}</a>
2020-06-07 19:04:43 +03:00
&nbsp;|&nbsp;
2022-08-09 09:37:08 +03:00
<a href="/album{$album->getPrettyId()}/edit">{_edit_album}</a>
2020-06-07 19:04:43 +03:00
{/if}
2021-12-20 23:51:50 +03:00
<br/><br/>
2020-06-07 19:04:43 +03:00
{if $album->getPhotosCount() > 0}
2021-12-20 23:51:50 +03:00
<div class="container_gray album-flex">
{foreach $photos as $photo}
{php if($photo->isDeleted()) continue; }
<div class="album-photo">
<a
n:if="!is_null($thisUser) && $album->canBeModifiedBy($thisUser)"
href="/album{$album->getPrettyId()}/remove_photo/{$photo->getId()}" class="album-photo--delete">
2021-12-20 23:51:50 +03:00
&times;
</a>
<a href="/photo{$photo->getPrettyId()}?from=album{$album->getId()}">
[WIP] Textarea: Upload multiple pictures (#800) * VKAPI: Fix bug when DELETED user appear if there is no user_ids * Textarea: Make multiple attachments * постмодернистское искусство * Use only attachPic for grabbing pic attachments TODO throw flashFail on bruh moment with pic attachments * draft masonry picture layout in posts xddd где мои опиаты??? * fix funny typos in computeMasonryLayout * Fix video bruh moment in textarea * Posts: add multiple kakahi for microblog * Photo: Add minimal implementation of миниатюра открывашка Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> * Photo: Add ability to slide trough photos in one post This also gives ability to easily implement comments and actions * Photo: The Fxck Is This implementation of comments under photo in viewer * FloatingPhotoViewer: Better CSS - Fix that details background issue - Make slide buttons slightly shorter by height * FloatingPhotoViewer: Refactor, and make it better - Now you can actually check the comments under EVERY photo - Fix for textarea. Now you can publish comments * Fix funny typos xddd * Kinda fix poll display in non-microblog posts * Posts: Fix poll display in microblog posts * Add photos picker (#986) * early implementation of photos pickir Добавлен пикер фоточек и быстрая загрузка фото. Так же пофикшен просмотрщик фото в группах. Но, правда, я сломал копипейст, но это ладн. * Fiks fotos viver four coments. * Add picking photos from clubs albums Копипейст и граффити так и не пофикшены * Fix graffiti and copypaste Какого-то хуя копипаста у постов срабатывает два раза. * some fixesx * dragon drop * Fix PHP 8 compatibility * 5 (#988) --------- Co-authored-by: celestora <kitsuruko@gmail.com> Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> Co-authored-by: lalka2016 <99399973+lalka2016@users.noreply.github.com> Co-authored-by: Alexander Minkin <weryskok@gmail.com>
2023-10-03 19:40:13 +03:00
<img class="album-photo--image" src="{$photo->getURLBySizeId('tinier')}" alt="{$photo->getDescription()}" />
2021-12-20 23:51:50 +03:00
</a>
</div>
{/foreach}
</div>
2020-06-07 19:04:43 +03:00
{include "../components/paginator.xml", conf => $paginatorConf}
{else}
{include "../components/nothing.xml"}
{/if}
{/block}