mirror of
https://github.com/openvk/openvk
synced 2024-11-15 19:49:14 +03:00
378 lines
23 KiB
XML
378 lines
23 KiB
XML
{extends "../@layout.xml"}
|
|
|
|
{block title}
|
|
{tr("search_for_$section")}
|
|
{if $_REQUEST['q']}
|
|
- {$_REQUEST['q']}
|
|
{/if}
|
|
{/block}
|
|
|
|
{block header}
|
|
{tr("search_for_$section")}
|
|
{/block}
|
|
|
|
{block wrap}
|
|
<div class="wrap2">
|
|
<div class="wrap1">
|
|
<div class="page_wrap">
|
|
<div class='summaryBar summaryBarFlex padding'>
|
|
<div class='summary'>
|
|
<b>{tr("results", $count)} {tr("showing_x_y", $page, $count)}</b>
|
|
</div>
|
|
|
|
{include "../components/paginator.xml", conf => $paginatorConf}
|
|
</div>
|
|
|
|
<div class='page_wrap_content' id='search_page'>
|
|
<div class='page_wrap_content_main'>
|
|
{if $count > 0}
|
|
{if $section === 'users'}
|
|
<div class='search_content def_row_content' n:foreach="$data as $dat">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td valign="top">
|
|
<a href="{$dat->getURL()}">
|
|
<img src="{$dat->getAvatarUrl('miniscule')}" width="75" alt="{_photo}" loading='lazy' />
|
|
</a>
|
|
</td>
|
|
<td valign="top" style="width: 100%">
|
|
<a href="{$dat->getURL()}">
|
|
<b>
|
|
<text style="overflow: hidden;"> {$dat->getCanonicalName()}
|
|
{if $order == "rating"}
|
|
({$dat->getProfileCompletenessReport()->total}%)
|
|
{/if}
|
|
</text>
|
|
<img n:if="$dat->isVerified()"
|
|
class="name-checkmark"
|
|
src="/assets/packages/static/openvk/img/checkmark.png"
|
|
/>
|
|
</b>
|
|
{if $dat->getId() == $thisUser->getId()}
|
|
({_s_it_is_you})
|
|
{/if}
|
|
</a>
|
|
|
|
<table class="ugc-table">
|
|
<tbody>
|
|
{if $_REQUEST["order"] == "id"}
|
|
<tr>
|
|
<td><span class="nobold">ID:</span></td>
|
|
<td>{$dat->getId()}</td>
|
|
</tr>
|
|
{/if}
|
|
{if $dat->getPrivacySetting("page.info.read") > 1}
|
|
<tr>
|
|
<td><span class="nobold">{_pronouns}: </span></td>
|
|
<td>{$dat->isFemale() ? tr("female") : ($dat->isNeutral() ? tr("neutral") : tr("male"))}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><span class="nobold">{_relationship}:</span></td>
|
|
<td>{$dat->getLocalizedMaritalStatus()}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><span class="nobold">{_registration_date}: </span></td>
|
|
<td>{$dat->getRegistrationTime()}</td>
|
|
</tr>
|
|
{if !empty($dat->getDescription())}
|
|
<tr>
|
|
<td>
|
|
<span class="nobold">{_description}:</span>
|
|
</td>
|
|
<td>
|
|
{$dat->getDescription() ?? '(' . tr("none") . ')'}
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
{if !empty($_REQUEST["fav_mus"])}
|
|
<tr>
|
|
<td><span class="nobold">{_favorite_music}:</span></td>
|
|
<td>{$dat->getFavoriteMusic()}</td>
|
|
</tr>
|
|
{/if}
|
|
{if !empty($_REQUEST["fav_films"])}
|
|
<tr>
|
|
<td><span class="nobold">{_favorite_films}:</span></td>
|
|
<td>{$dat->getFavoriteFilms()}</td>
|
|
</tr>
|
|
{/if}
|
|
{if !empty($_REQUEST["fav_shows"])}
|
|
<tr>
|
|
<td><span class="nobold">{_favorite_shows}:</span></td>
|
|
<td>{$dat->getFavoriteShows()}</td>
|
|
</tr>
|
|
{/if}
|
|
{if !empty($_REQUEST["fav_books"])}
|
|
<tr>
|
|
<td><span class="nobold">{_favorite_books}:</span></td>
|
|
<td>{$dat->getFavoriteBooks()}</td>
|
|
</tr>
|
|
{/if}
|
|
{/if}
|
|
</tbody>
|
|
</table>
|
|
<br/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{elseif $section === 'groups'}
|
|
<div class='search_content def_row_content' n:foreach="$data as $dat">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td valign="top">
|
|
<a href="{$dat->getURL()}">
|
|
<img src="{$dat->getAvatarUrl('miniscule')}" width="75" alt="{_photo}" loading='lazy' />
|
|
</a>
|
|
</td>
|
|
<td valign="top" style="width: 100%">
|
|
<a href="{$dat->getURL()}">
|
|
<b>
|
|
<text style="overflow: hidden;"> {$dat->getCanonicalName()}
|
|
{if $order == "id"}
|
|
(id{$dat->getId()})
|
|
{/if}
|
|
</text>
|
|
<img n:if="$dat->isVerified()"
|
|
class="name-checkmark"
|
|
src="/assets/packages/static/openvk/img/checkmark.png"
|
|
/>
|
|
</b>
|
|
</a>
|
|
|
|
<table class="ugc-table">
|
|
<tbody>
|
|
{if !empty($dat->getDescription())}
|
|
<tr>
|
|
<td>
|
|
<span class="nobold">{_description}:</span>
|
|
</td>
|
|
<td>
|
|
{$dat->getDescription() ?? '(' . tr("none") . ')'}
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
<td>
|
|
<span class="nobold">{_size}:</span>
|
|
</td>
|
|
<td>
|
|
{tr("participants", $dat->getFollowersCount())}
|
|
</td>
|
|
</tbody>
|
|
</table>
|
|
<br/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{elseif $section === 'apps'}
|
|
<div class='search_content def_row_content' n:foreach="$data as $dat">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td valign="top">
|
|
<a href="/app{$dat->getId()}">
|
|
<img src="{$dat->getAvatarUrl('miniscule')}" width="75" alt="{_photo}" loading='lazy' />
|
|
</a>
|
|
</td>
|
|
<td valign="top" style="width: 100%">
|
|
<a href="/app{$dat->getId()}">
|
|
<b>
|
|
<text style="overflow: hidden;">
|
|
{$dat->getName()}
|
|
</text>
|
|
</b>
|
|
</a>
|
|
|
|
<table class="ugc-table">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
{$dat->getDescription() ?? '(' . tr("none") . ')'}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<br/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{elseif $section === 'posts'}
|
|
{* шмалим дурь курим шмаль дуем коку пиво пьём *}
|
|
<div class='search_content' n:foreach="$data as $dat">
|
|
{include "../components/post.xml", post => $dat, commentSection => true, onWallOf => true}
|
|
</div>
|
|
{elseif $section === 'comments'}
|
|
<div class='search_content' n:foreach="$data as $dat">
|
|
{include "../components/comment.xml", no_reply_button => true, comment => $dat, correctLink => true}
|
|
</div>
|
|
{elseif $section === 'videos'}
|
|
<div class='search_content' n:foreach="$data as $dat">
|
|
{include "../components/video.xml", video => $dat}
|
|
</div>
|
|
{elseif $section === 'audios'}
|
|
<div class='search_content' n:foreach="$data as $dat">
|
|
{include "../Audio/player.xml", audio => $dat}
|
|
</div>
|
|
{/if}
|
|
{else}
|
|
{include "../components/content_error.xml", description => tr("no_results_by_this_query")}
|
|
{/if}
|
|
</div>
|
|
<div class='page_wrap_content_options verticalGrayTabsWrapper'>
|
|
<div class="page_wrap_content_options_list verticalGrayTabs with_padding">
|
|
<a n:attr="id => $section === 'users' ? 'used'" href="/search?section=users&q={$query}"> {_s_people}</a>
|
|
<a n:attr="id => $section === 'groups' ? 'used'" href="/search?section=groups&q={$query}"> {_s_groups}</a>
|
|
<a n:attr="id => $section === 'posts' ? 'used'" href="/search?section=posts&q={$query}"> {_s_posts}</a>
|
|
<a n:attr="id => $section === 'comments' ? 'used'" href="/search?section=comments&q={$query}"> {_s_comments}</a>
|
|
<a n:attr="id => $section === 'videos' ? 'used'" href="/search?section=videos&q={$query}"> {_s_videos}</a>
|
|
<a n:attr="id => $section === 'apps' ? 'used'" href="/search?section=apps&q={$query}"> {_s_apps}</a>
|
|
<a n:attr="id => $section === 'audios' ? 'used'" href="/search?section=audios&q={$query}"> {_s_audios}</a>
|
|
<a n:attr="id => $section === 'playlists' ? 'used'" href="/search?section=playlists&q={$query}">{_s_audios_playlists}</a>
|
|
</div>
|
|
|
|
<div class='page_search_options'>
|
|
{include searchOptions}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div n:if='$paginatorConf->pageCount > 1' class='page_content_paginator_bottom'>
|
|
{include "../components/paginator.xml", conf => $extendedPaginatorConf}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/block}
|
|
|
|
{block searchOptions}
|
|
<div class="search_option">
|
|
<div class="search_option_name">
|
|
<div class='search_option_name_ico'></div>
|
|
{_s_order_by}
|
|
</div>
|
|
<div class="search_option_content">
|
|
<select name="order" form="search_form" data-default='id'>
|
|
{if $section == "users"}
|
|
<option value="id" n:attr="selected => $order == 'id'">{_s_order_by_reg_date}</option>
|
|
|
|
{if OPENVK_ROOT_CONF["openvk"]["preferences"]["commerce"]}
|
|
<option value="rating" n:attr="selected => $order == 'rating'">{_s_order_by_rating}</option>
|
|
{/if}
|
|
{elseif $section == "posts"}
|
|
<option value="id" n:attr="selected => $order == 'id'">{_s_order_by_publishing_date}</option>
|
|
{elseif $section == "audios"}
|
|
<option value="id" n:attr="selected => $order == 'id'">{_s_order_by_upload_date}</option>
|
|
{else}
|
|
<option value="id" n:attr="selected => $order == 'id'">{_s_order_by_creation_date}</option>
|
|
{/if}
|
|
|
|
{if $section == "audios"}
|
|
<option value="length" n:attr="selected => $order == 'length'">{_s_order_by_length}</option>
|
|
<option value="listens" n:attr="selected => $order == 'listens'">{_s_order_by_listens}</option>
|
|
{/if}
|
|
</select>
|
|
|
|
<label n:if="$order != 'rating'">
|
|
<input type="checkbox" name="invert" value="1" form="search_form" n:attr="checked => $_REQUEST['invert'] == '1'">
|
|
{_s_order_invert}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div n:if="$section == 'users'" class="search_option">
|
|
<div class="search_option_name">
|
|
<div class='search_option_name_ico'></div>
|
|
{_main}
|
|
</div>
|
|
<div class="search_option_content">
|
|
<input type="text" n:attr="value => $_REQUEST['city']" form="search_form" placeholder="{_city}" name="city">
|
|
<input type="text" n:attr="value => $_REQUEST['hometown']" form="search_form" placeholder="{_hometown}" name="hometown">
|
|
|
|
<label>
|
|
<input name="is_online" type="checkbox" n:attr="checked => $_REQUEST['is_online'] == '1'" form="search_form" value="1">
|
|
{_s_now_on_site}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div n:if="$section == 'users'" class="search_option">
|
|
<div class="search_option_name">
|
|
<div class='search_option_name_ico'></div>
|
|
{_pronouns}
|
|
</div>
|
|
<div class="search_option_content">
|
|
<label><input type="radio" form="search_form" n:attr="checked => $_REQUEST['gender'] == 0" name="gender" value="0">{_male}</label>
|
|
<label><input type="radio" form="search_form" n:attr="checked => $_REQUEST['gender'] == 1" name="gender" value="1">{_female}</label>
|
|
<label><input type="radio" form="search_form" n:attr="checked => $_REQUEST['gender'] == 2" name="gender" value="2">{_neutral}</label>
|
|
<label><input type="radio" form="search_form" n:attr="checked => is_null($_REQUEST['gender']) || $_REQUEST['gender'] == 3" name="gender" data-default='1' value="3">{_s_any}</label>
|
|
</div>
|
|
</div>
|
|
<div n:if="$section == 'users'" n:class="search_option, !isset($_REQUEST['polit_views']) && !isset($_REQUEST['marital_status']) ? search_option_hidden">
|
|
<div class="search_option_name">
|
|
<div class='search_option_name_ico'></div>
|
|
{_s_additional}
|
|
</div>
|
|
<div class="search_option_content">
|
|
<label>
|
|
{_politViews}
|
|
<select name="polit_views" form="search_form" data-default='0'>
|
|
<option n:foreach="range(0, 9) as $i" value="{$i}" n:attr="selected => $_REQUEST['polit_views'] == $i">
|
|
{tr("politViews_".$i)}
|
|
</option>
|
|
</select>
|
|
</label>
|
|
|
|
<label>
|
|
{_relationship}
|
|
<select name="marital_status" form="search_form" data-default='0'>
|
|
<option n:foreach="range(0, 8) as $i" value="{$i}" n:attr="selected => $_REQUEST['marital_status'] == $i">
|
|
{tr("relationship_".$i)}
|
|
</option>
|
|
</select>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div n:if="$section == 'videos'" class="search_option">
|
|
<div class="search_option_name">
|
|
<div class='search_option_name_ico'></div>
|
|
{_s_main}
|
|
</div>
|
|
<div class="search_option_content">
|
|
<label>
|
|
<input type="checkbox" value='1' name="only_youtube" n:attr="checked => !empty($_REQUEST['only_youtube'])" form="search_form">{_s_only_youtube}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div n:if="$section == 'audios'" class="search_option">
|
|
<div class="search_option_name">
|
|
<div class='search_option_name_ico'></div>
|
|
{_s_main}
|
|
</div>
|
|
<div class="search_option_content">
|
|
<label>
|
|
<input type="checkbox" name="only_performers" n:attr="checked => !empty($_REQUEST['only_performers'])" form="search_form">{_s_only_performers}
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" name="with_lyrics" n:attr="checked => !empty($_REQUEST['with_lyrics'])" form="search_form">{_s_with_lyrics}
|
|
</label>
|
|
<label>
|
|
{_genre}
|
|
<select name='genre' form="search_form">
|
|
<option n:attr="selected: empty($_REQUEST['genre'])" value="any">{_s_any_single}</option>
|
|
<option n:foreach='\openvk\Web\Models\Entities\Audio::genres as $genre' n:attr="selected: $_REQUEST['genre'] == $genre" value="{$genre}">
|
|
{$genre}
|
|
</option>
|
|
</select>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<input class="button" id="search_reset" type="button" value="{_reset}">
|
|
{/block}
|