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

53 lines
2 KiB
XML
Raw Normal View History

2020-06-07 19:04:43 +03:00
{extends "../@layout.xml"}
{block title}Альбом {$album->getName()}{/block}
{block header}
{var isClub = ($album->getOwner() instanceof openvk\Web\Models\Entities\Club)}
<a href="{$album->getOwner()->getURL()}">
{$album->getOwner()->getCanonicalName()}
</a>
{if $isClub}
» <a href="/albums{$album->getOwner()->getId() * -1}">{_"albums"}</a>
{else}
» <a href="/albums{$album->getOwner()->getId()}">{_"albums"}</a>
{/if}
» {$album->getName()}
{/block}
{block content}
<a href="/album{$album->getPrettyId()}">
<b>{$album->getPhotosCount()} фотографий</b>
</a>
{if !is_null($thisUser) && $album->canBeModifiedBy($thisUser) && !$album->isCreatedBySystem()}
&nbsp;|&nbsp;
<a href="/photos/upload?album={$album->getPrettyId()}">{_"upload_photo"}</a>
&nbsp;|&nbsp;
<a href="/album{$album->getPrettyId()}/edit">{_"edit_album"}</a>
{/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.pl/{$photo->getId()}" class="album-photo--delete">
&times;
</a>
<a href="/photo{$photo->getPrettyId()}?from=album{$album->getId()}">
<img class="album-photo--image" src="{$photo->getURL()}" alt="{$photo->getDescription()}" />
</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}