2022-04-24 08:06:45 +03:00
{var $instance_name = OPENVK_ROOT_CONF['openvk']['appearance']['name']}
2022-04-24 07:38:21 +03:00
{if !isset($parentModule) || substr($parentModule, 0, 21) === 'libchandler:absolute.'}
2022-01-09 08:53:26 +03:00
<!DOCTYPE html>
2022-04-24 07:38:21 +03:00
<html >
2020-06-07 19:04:43 +03:00
<head >
<title >
2021-12-01 16:19:37 +03:00
{ifset title}{include title} - {/ifset}{$instance_name}
2020-06-07 19:04:43 +03:00
</title>
<meta charset= "utf-8" />
<link rel= "shortcut icon" href= "/assets/packages/static/openvk/img/icon.ico" />
2021-12-01 16:19:37 +03:00
<meta name= "application-name" content= "{$instance_name}" />
2020-06-07 19:04:43 +03:00
<meta n:ifset= "$csrfToken" name= "csrf" value= "{$csrfToken}" />
2022-01-09 08:47:57 +03:00
2021-12-04 16:06:28 +03:00
<script src= "/language/{php echo getLanguage()}.js" crossorigin= "anonymous" > </script>
2022-01-09 08:47:57 +03:00
{script "js/node_modules/jquery/dist/jquery.min.js"}
2020-06-07 19:04:43 +03:00
{script "js/node_modules/umbrellajs/umbrella.min.js"}
2021-12-04 16:06:28 +03:00
{script "js/l10n.js"}
2020-06-07 19:04:43 +03:00
{script "js/openvk.cls.js"}
2022-01-09 08:47:57 +03:00
2022-10-09 11:34:57 +03:00
{css "js/node_modules/tippy.js/dist/backdrop.css"}
{css "js/node_modules/tippy.js/dist/border.css"}
{css "js/node_modules/tippy.js/dist/svg-arrow.css"}
{css "js/node_modules/tippy.js/themes/light.css"}
{script "js/node_modules/@popperjs/core/dist/umd/popper.min.js"}
{script "js/node_modules/tippy.js/dist/tippy-bundle.umd.min.js"}
{script "js/node_modules/handlebars/dist/handlebars.min.js"}
2022-05-08 13:06:26 +03:00
{if $isTimezoned == NULL}
2022-01-22 15:54:57 +03:00
{script "js/timezone.js"}
{/if}
2022-10-11 19:04:43 +03:00
{include "_includeCSS.xml"}
2022-01-09 08:47:57 +03:00
{ifset headIncludes}
{include headIncludes}
{/ifset}
2020-06-07 19:04:43 +03:00
</head>
<body >
<div id= "sudo-banner" n:if= "isset($thisUser) && $userTainted" >
<p >
2023-09-17 16:22:59 +03:00
{_you_entered_as} <b > {$thisUser->getCanonicalName()}</b> . {_please_rights}
{_click_on} <a href= "/setSID/unset?hash={rawurlencode($csrfToken)}" > {_there}</a> , {_to_leave}.
2020-06-07 19:04:43 +03:00
</p>
</div>
2022-01-09 08:47:57 +03:00
2020-06-07 19:04:43 +03:00
<div n:if= "OPENVK_ROOT_CONF['openvk']['preferences']['bellsAndWhistles']['testLabel']" id= "test-label" > FOR TESTING PURPOSES ONLY</div>
2022-01-09 08:47:57 +03:00
<div class= "notifications_global_wrap" > </div>
2020-06-07 19:04:43 +03:00
<div class= "dimmer" > </div>
2022-01-09 08:47:57 +03:00
2023-07-06 13:20:49 +03:00
<div class= "articleView" >
2023-07-07 14:52:10 +03:00
<a id= "articleCloseButton" class= "button" href= "javascript:void(u('body').removeClass('article'));" > {_close}</a>
2023-07-06 13:20:49 +03:00
<div class= "articleView_container" >
<div class= "articleView_info" >
<div class= "articleView_author" >
<img id= "articleAuthorAva" src= "" />
<div >
<span > <a id= "articleAuthorName" > </a> </span>
<time id= "articleTime" > </time>
</div>
</div>
<div class= "articleView_link" >
<a id= "articleLink" href= "/" class= "button" > {_aw_legacy_ui}</a>
</div>
</div>
<div class= "articleView_text" id= "articleText" >
</div>
</div>
</div>
2022-12-12 02:23:42 +03:00
{if isset($backdrops) & & !is_null($backdrops)}
<div id= "backdrop" style= "background-image: url('{$backdrops[0]|noescape}'), url('{$backdrops[1]|noescape}');" >
<div id= "backdropDripper" > </div>
</div>
{/if}
2020-06-07 19:04:43 +03:00
<div class= "toTop" >
2022-01-30 15:18:39 +03:00
⬆ {_to_top}
2020-06-07 19:04:43 +03:00
</div>
2022-01-09 08:47:57 +03:00
2020-06-07 19:04:43 +03:00
<div class= "layout" >
2020-06-11 23:21:49 +03:00
<div id= "xhead" class= "dm" > </div>
2022-03-21 16:00:01 +03:00
<div class= "page_header{if $instance_name != OPENVK_DEFAULT_INSTANCE_NAME} page_custom_header{/if}" >
<a href= "/" class= "home_button{if $instance_name != OPENVK_DEFAULT_INSTANCE_NAME} home_button_custom{/if}" title= "{$instance_name}" > {if $instance_name != OPENVK_DEFAULT_INSTANCE_NAME}{$instance_name}{/if}</a>
2022-01-31 14:45:53 +03:00
<div n:if= "isset($thisUser) ? (!$thisUser->isBanned() XOR !$thisUser->isActivated()) : true" class= "header_navigation" >
2020-06-07 19:04:43 +03:00
{ifset $thisUser}
2022-08-05 23:00:52 +03:00
{if $thisUser->isDeactivated()}
<div class= "link" >
<a href= "/logout?hash={urlencode($csrfToken)}" > {_header_log_out}</a>
</div>
{else}
2023-06-10 18:54:02 +03:00
<div class= "link dec" >
2022-08-05 23:00:52 +03:00
<a href= "/" > {_header_home}</a>
</div>
2023-06-10 18:54:02 +03:00
<div class= "link dec" >
2022-08-05 23:00:52 +03:00
<a href= "/search?type=groups" > {_header_groups}</a>
</div>
2023-06-10 18:54:02 +03:00
<div class= "link dec" >
2022-08-05 23:00:52 +03:00
<a href= "/search" > {_header_search}</a>
</div>
2023-06-10 18:54:02 +03:00
<div class= "link dec" >
2022-08-05 23:00:52 +03:00
<a href= "/invite" > {_header_invite}</a>
</div>
2023-06-10 18:54:02 +03:00
<div class= "link dec" >
2022-08-05 23:00:52 +03:00
<a href= "/support" > {_header_help} <b n:if= "$ticketAnsweredCount > 0" > ({$ticketAnsweredCount})</b> </a>
</div>
2023-06-10 18:54:02 +03:00
<div class= "link dec" >
2022-08-05 23:00:52 +03:00
<a href= "/logout?hash={urlencode($csrfToken)}" > {_header_log_out}</a>
</div>
2023-06-10 18:54:02 +03:00
{var $atSearch = str_contains($_SERVER['REQUEST_URI'], "/search")}
<div id= "srch" class= "{if $atSearch}nodivider{else}link{/if}" >
{if !$atSearch}
<form action= "/search" method= "get" id= "searcher" style= "position:relative;" >
2023-06-22 12:39:25 +03:00
<input autocomplete= "off" id= "searchInput" oninput= "checkSearchTips()" onfocus= "expandSearch()" onblur= "decreaseSearch()" class= "sr" type= "search" name= "query" placeholder= "{_header_search}" style= "height: 20px;background: url('/assets/packages/static/openvk/img/search_icon.png') no-repeat 3px 4px; background-color: #fff; padding-left: 18px;width: 120px;" title= "{_header_search} [Alt+Shift+F]" accesskey= "f" />
<select onchange= "checkSearchTips()" id= "typer" name= "type" class= "whatFind" style= "display:none;top: 0px;" >
2023-06-10 18:54:02 +03:00
<option value= "users" > {_s_by_people}</option>
<option value= "groups" > {_s_by_groups}</option>
<option value= "posts" > {_s_by_posts}</option>
<option value= "comments" > {_s_by_comments}</option>
<option value= "videos" > {_s_by_videos}</option>
<option value= "apps" > {_s_by_apps}</option>
</select>
</form>
2023-06-22 12:39:25 +03:00
<div class= "searchTips" id= "srcht" h i d d e n >
<table style= "border:none;border-spacing: 0;" >
<tbody id= "srchrr" >
</tbody>
</table>
</div>
2023-06-10 18:54:02 +03:00
{else}
<form action= "/search" method= "get" id= "searcher" style= "margin-top: -1px;position:relative;" >
<input id= "searchInput" value= "{$_GET['query'] ?? ''}" type= "search" class= "sr" name= "query" placeholder= "{_header_search}" style= "height: 20px; background-color: #fff; padding-left: 6px;width: 555px;" title= "{_header_search} [Alt+Shift+F]" accesskey= "f" />
<select name= "type" class= "whatFind" >
<option value= "users" { i f s t r _ c o n t a i n s ( $ _ S E R V E R [ ' R E Q U E S T _ U R I ' ] , " type= users")}selected{/if} > {_s_by_people}</option>
<option value= "groups" { i f s t r _ c o n t a i n s ( $ _ S E R V E R [ ' R E Q U E S T _ U R I ' ] , " type= groups")}selected{/if} > {_s_by_groups}</option>
<option value= "posts" { i f s t r _ c o n t a i n s ( $ _ S E R V E R [ ' R E Q U E S T _ U R I ' ] , " type= posts")}selected{/if} > {_s_by_posts}</option>
<option value= "comments" { i f s t r _ c o n t a i n s ( $ _ S E R V E R [ ' R E Q U E S T _ U R I ' ] , " type= comments")}selected{/if} > {_s_by_comments}</option>
<option value= "videos" { i f s t r _ c o n t a i n s ( $ _ S E R V E R [ ' R E Q U E S T _ U R I ' ] , " type= videos")}selected{/if} > {_s_by_videos}</option>
<option value= "apps" { i f s t r _ c o n t a i n s ( $ _ S E R V E R [ ' R E Q U E S T _ U R I ' ] , " type= apps")}selected{/if} > {_s_by_apps}</option>
</select>
<button class= "searchBtn" > <span style= "color:white;font-weight: 600;font-size:12px;" > {_header_search}</span> </button>
</form>
<script >
let els = document.querySelectorAll("div.dec")
for(const element of els)
{
element.style.display = "none"
}
</script>
{/if}
2022-08-05 23:00:52 +03:00
</div>
{/if}
2020-06-07 19:04:43 +03:00
{else}
<div class= "link" >
2022-01-09 08:47:57 +03:00
<a href= "/login" > {_header_login}</a>
2020-06-07 19:04:43 +03:00
</div>
2022-03-09 14:06:43 +03:00
<div class= "link" >
2022-01-09 08:47:57 +03:00
<a href= "/reg" > {_header_registration}</a>
2020-06-07 19:04:43 +03:00
</div>
<div class= "link" >
2022-01-09 08:47:57 +03:00
<a href= "/support" > {_header_help}</a>
2020-06-07 19:04:43 +03:00
</div>
{/ifset}
</div>
</div>
2022-01-09 08:47:57 +03:00
2020-06-07 19:04:43 +03:00
<div class= "sidebar" >
<div class= "navigation" >
2022-01-09 08:47:57 +03:00
{ifset $thisUser}
2022-08-05 23:00:52 +03:00
{if !$thisUser->isBanned() XOR !$thisUser->isActivated() XOR $thisUser->isDeactivated()}
2022-01-09 08:47:57 +03:00
<a href= "/edit" class= "link edit-button" > {_edit_button}</a>
2022-04-09 09:14:11 +03:00
<a href= "{$thisUser->getURL()}" class= "link" title= "{_my_page} [Alt+Shift+.]" accesskey= "." > {_my_page}</a>
2022-01-09 08:47:57 +03:00
<a href= "/friends{$thisUser->getId()}" class= "link" > {_my_friends}
<object type= "internal/link" n:if= "$thisUser->getFollowersCount() > 0" >
2023-08-15 02:39:48 +03:00
<a href= "/friends{$thisUser->getId()}?act=incoming" class= "linkunderline" >
2022-01-09 08:47:57 +03:00
(<b > {$thisUser->getFollowersCount()}</b> )
</a>
</object>
2020-12-28 03:00:57 +03:00
</a>
2022-01-09 08:47:57 +03:00
<a n:if= "$thisUser->getLeftMenuItemStatus('photos')" href= "/albums{$thisUser->getId()}" class= "link" > {_my_photos}</a>
<a n:if= "$thisUser->getLeftMenuItemStatus('videos')" href= "/videos{$thisUser->getId()}" class= "link" > {_my_videos}</a>
<a n:if= "$thisUser->getLeftMenuItemStatus('messages')" href= "/im" class= "link" > {_my_messages}
<object type= "internal/link" n:if= "$thisUser->getUnreadMessagesCount() > 0" >
(<b > {$thisUser->getUnreadMessagesCount()}</b> )
</object>
</a>
<a n:if= "$thisUser->getLeftMenuItemStatus('notes')" href= "/notes{$thisUser->getId()}" class= "link" > {_my_notes}</a>
<a n:if= "$thisUser->getLeftMenuItemStatus('groups')" href= "/groups{$thisUser->getId()}" class= "link" > {_my_groups}</a>
2022-05-11 15:48:22 +03:00
<a n:if= "$thisUser->getLeftMenuItemStatus('news')" href= "/feed" class= "link" title= "{_my_feed} [Alt+Shift+,]" accesskey= "," > {_my_feed}</a>
2022-04-09 09:14:11 +03:00
<a href= "/notifications" class= "link" title= "{_my_feedback} [Alt+Shift+N]" accesskey= "n" > {_my_feedback}
2022-01-09 08:47:57 +03:00
{if $thisUser->getNotificationsCount() > 0}
(<b > {$thisUser->getNotificationsCount()}</b> )
{/if}
</a>
2023-09-17 00:56:36 +03:00
<a n:if= "$thisUser->getLeftMenuItemStatus('apps')" href= "/apps?act=installed" class= "link" > {_my_apps}</a>
2022-01-09 08:47:57 +03:00
<a href= "/settings" class= "link" > {_my_settings}</a>
2022-04-24 08:06:45 +03:00
{var $canAccessAdminPanel = $thisUser->getChandlerUser()->can("access")->model("admin")->whichBelongsTo(NULL)}
{var $canAccessHelpdesk = $thisUser->getChandlerUser()->can("write")->model('openvk\Web\Models\Entities\TicketReply')->whichBelongsTo(0)}
{var $menuLinksAvaiable = sizeof(OPENVK_ROOT_CONF['openvk']['preferences']['menu']['links']) > 0 & & $thisUser->getLeftMenuItemStatus('links')}
2022-01-09 08:47:57 +03:00
<div n:if= "$canAccessAdminPanel || $canAccessHelpdesk || $menuLinksAvaiable" class= "menu_divider" > </div>
2022-04-24 09:02:23 +03:00
<a href= "/admin" class= "link" n:if= "$canAccessAdminPanel" title= "{_admin} [Alt+Shift+A]" accesskey= "a" > {_admin}</a>
2022-11-08 00:36:07 +03:00
<a href= "/support/tickets" class= "link" n:if= "$canAccessHelpdesk" > {_helpdesk}
2021-12-05 14:54:39 +03:00
{if $helpdeskTicketNotAnsweredCount > 0}
2021-12-05 01:56:42 +03:00
(<b > {$helpdeskTicketNotAnsweredCount}</b> )
2021-12-04 23:15:13 +03:00
{/if}
</a>
2023-08-11 16:50:19 +03:00
<a n:if= "$canAccessHelpdesk" href= "/scumfeed" class= "link" > {tr("reports")}
{if $reportNotAnsweredCount > 0}
(<b > {$reportNotAnsweredCount}</b> )
{/if}
</a>
<a n:if= "$canAccessHelpdesk" href= "/noSpam" class= "link" >
noSpam
</a>
<a
2023-08-11 17:10:18 +03:00
n:if="$thisUser->getLeftMenuItemStatus('links')"
2023-08-11 16:50:19 +03:00
n:foreach="OPENVK_ROOT_CONF['openvk']['preferences']['menu']['links'] as $menuItem"
href="{$menuItem['url']}"
target="_blank"
2023-08-11 17:10:18 +03:00
class="link">
{strpos($menuItem["name"], "@") === 0 ? tr(substr($menuItem["name"], 1)) : $menuItem["name"]}
</a>
2023-08-11 16:50:19 +03:00
<div id= "_groupListPinnedGroups" >
2020-06-26 12:32:30 +03:00
2022-01-09 08:47:57 +03:00
<div id= "_groupListPinnedGroups" >
<div n:if= "$thisUser->getPinnedClubCount() > 0" class= "menu_divider" > </div>
<a n:foreach= "$thisUser->getPinnedClubs() as $club" href= "{$club->getURL()}" class= "link group_link" > {$club->getName()}</a>
</div>
2022-04-18 18:54:50 +03:00
2022-04-18 21:59:54 +03:00
<div n:if= "OPENVK_ROOT_CONF['openvk']['preferences']['commerce'] && $thisUser->getCoins() != 0" id= "votesBalance" >
2022-04-18 18:54:50 +03:00
{tr("you_still_have_x_points", $thisUser->getCoins())|noescape}
2022-04-18 21:59:54 +03:00
<br /> <br />
2022-04-18 18:54:50 +03:00
<a href= "/settings?act=finance" > {_top_up_your_account} » </a>
</div>
2022-01-09 08:47:57 +03:00
<a n:if= "OPENVK_ROOT_CONF['openvk']['preferences']['adPoster']['enable'] && $thisUser->getLeftMenuItemStatus('poster')" href= "{php echo OPENVK_ROOT_CONF['openvk']['preferences']['adPoster']['link']}" >
2022-06-20 06:39:25 +03:00
<img src= "{php echo OPENVK_ROOT_CONF['openvk']['preferences']['adPoster']['src']}" alt= "{php echo OPENVK_ROOT_CONF['openvk']['preferences']['adPoster']['caption']}" class= "psa-poster" style= "max-width: 100%; margin-top: 10px;" />
2022-01-09 08:47:57 +03:00
</a>
2022-08-13 13:21:20 +03:00
<div class= "floating_sidebar" >
2023-01-07 22:52:50 +03:00
<a id= "minilink-friends" class= "minilink" href= "/friends{$thisUser->getId()}" >
2022-08-13 13:21:20 +03:00
<object type= "internal/link" n:if= "$thisUser->getFollowersCount() > 0" >
<div class= "counter" >
+{$thisUser->getFollowersCount()}
</div>
</object>
<img src= "/assets/packages/static/openvk/img/friends.svg" >
</a>
2023-01-07 22:52:50 +03:00
<a id= "minilink-albums" class= "minilink" href= "/albums{$thisUser->getId()}" >
2022-08-13 13:21:20 +03:00
<img src= "/assets/packages/static/openvk/img/photos.svg" >
</a>
2023-01-07 22:52:50 +03:00
<a id= "minilink-messenger" class= "minilink" href= "/im" >
2022-08-13 13:21:20 +03:00
<object type= "internal/link" n:if= "$thisUser->getUnreadMessagesCount() > 0" >
<div class= "counter" >
+{$thisUser->getUnreadMessagesCount()}
</div>
</object>
<img src= "/assets/packages/static/openvk/img/messages.svg" >
</a>
2023-01-07 22:52:50 +03:00
<a id= "minilink-groups" class= "minilink" href= "/groups{$thisUser->getId()}" >
2022-08-13 13:21:20 +03:00
<img src= "/assets/packages/static/openvk/img/groups.svg" >
</a>
2023-01-07 22:52:50 +03:00
<a id= "minilink-notifications" class= "minilink" href= "/notifications" >
2022-08-13 13:21:20 +03:00
<object type= "internal/link" n:if= "$thisUser->getNotificationsCount() > 0" >
<div class= "counter" >
+{$thisUser->getNotificationsCount()}
</div>
</object>
<img src= "/assets/packages/static/openvk/img/feedback.svg" >
</a>
</div>
2022-01-31 14:45:53 +03:00
{elseif !$thisUser->isActivated()}
<a href= "/logout?hash={urlencode($csrfToken)}" class= "link" > {_menu_logout}</a>
2022-01-09 08:47:57 +03:00
{else}
2022-01-28 19:02:19 +03:00
<a href= "/support" class= "link" > {_menu_support}
{if $ticketAnsweredCount > 0}
(<b > {$ticketAnsweredCount}</b> )
{/if}
</a>
2022-01-09 08:47:57 +03:00
<a href= "/logout?hash={urlencode($csrfToken)}" class= "link" > {_menu_logout}</a>
{/if}
2020-06-07 19:04:43 +03:00
{else}
2022-01-09 08:47:57 +03:00
<form id= "fastLogin" action= "/login" method= "POST" enctype= "multipart/form-data" >
<label for= "login" > <span > {_email}:</span> </label>
<input id= "login" type= "text" name= "login" r e q u i r e d />
<label for= "password" > <span > {_password}:</span> </label>
<input id= "password" type= "password" name= "password" r e q u i r e d />
<input type= "hidden" name= "jReturnTo" value= "{$_SERVER['REQUEST_URI']}" />
<input type= "hidden" name= "hash" value= "{$csrfToken}" />
2023-04-19 11:12:05 +03:00
<input type= "submit" value= "{_log_in}" class= "button" style= "display: inline-block; font-family: Tahoma" />
<a href= "/reg" > <input type= "button" value= "{_registration}" class= "button" style= "font-family: Tahoma" /> </a> <br > <br >
2023-05-26 12:27:40 +03:00
{if !OPENVK_ROOT_CONF['openvk']['preferences']['security']['disablePasswordRestoring']}<a href= "/restore" > {_forgot_password}</a> {/if}
2022-01-09 08:47:57 +03:00
</form>
{/ifset}
2023-08-11 16:50:19 +03:00
</div>
2020-06-07 19:04:43 +03:00
</div>
2023-08-11 16:50:19 +03:00
{ifset $thisUser}
2023-08-21 12:47:25 +03:00
{if !$thisUser->isBanned() & & !$thisUser->isDeleted()}
2023-08-11 16:50:19 +03:00
</div>
{/if}
{/ifset}
2022-01-09 08:47:57 +03:00
2020-06-07 19:04:43 +03:00
<div class= "page_body" >
<div id= "wrapH" >
<div id= "wrapHI" >
<div n : i f c o n t e n t class= "page_yellowheader" >
2022-01-09 08:47:57 +03:00
{include header}
2020-06-07 19:04:43 +03:00
</div>
</div>
</div>
2022-01-09 08:47:57 +03:00
{ifset wrap}
<div class= "msg msg_{$flashMessage->type}" n:ifset= "$flashMessage" >
<b > {$flashMessage->title}</b> <br />
{$flashMessage->msg|noescape}
</div>
{include wrap}
{else}
<div class= "wrap2" >
<div class= "wrap1" >
<div id= "auth" class= "page-wrap" >
<div class= "page_content" >
<div class= "msg msg_{$flashMessage->type}" n:ifset= "$flashMessage" >
2020-06-07 19:04:43 +03:00
<b > {$flashMessage->title}</b> <br />
{$flashMessage->msg|noescape}
</div>
2022-01-09 08:47:57 +03:00
{include content}
2020-06-07 19:04:43 +03:00
</div>
2022-01-09 08:47:57 +03:00
</div>
</div>
</div>
{/ifset}
2020-06-07 19:04:43 +03:00
</div>
</div>
2022-01-09 08:47:57 +03:00
2020-06-07 19:04:43 +03:00
<div class= "page_footer" >
2022-04-24 08:06:45 +03:00
{var $dbVersion = \Chandler\Database\DatabaseConnection::i()->getConnection()->getPdo()->getAttribute(\PDO::ATTR_SERVER_VERSION)}
2022-01-09 08:47:57 +03:00
2020-06-07 19:04:43 +03:00
<div class= "navigation_footer" >
2022-01-03 18:31:55 +03:00
<a href= "/about" class= "link" > {_footer_about_instance}</a>
2023-05-01 12:51:10 +03:00
<a href= "/terms" class= "link" > {_footer_rules}</a>
2020-06-07 19:04:43 +03:00
<a href= "/blog" class= "link" > {_footer_blog}</a>
<a href= "/support" class= "link" > {_footer_help}</a>
<a href= "/dev" target= "_blank" class= "link" > {_footer_developers}</a>
<a href= "/privacy" class= "link" > {_footer_privacy}</a>
</div>
2022-11-06 06:20:00 +03:00
<p >
{var $currentUrl = $_SERVER["REQUEST_URI"]}
{foreach array_slice(getLanguages(), 0, 3) as $language}
<a href= "/language?lg={$language['code']}&hash={urlencode($csrfToken)}&jReturnTo={php echo rawurlencode($currentUrl)}" rel= "nofollow" title= "{$language['native_name']}" class= "link" >
<img src= "/assets/packages/static/openvk/img/flags/{$language['flag']}.gif" alt= "{$language['native_name']}" >
</a>
{/foreach}
<a href= "/language" class= "link" > all languages » </a>
</p>
2021-10-31 14:29:52 +03:00
<p > OpenVK <a href= "/about:openvk" > {php echo OPENVK_VERSION}</a> | PHP: {phpversion()} | DB: {$dbVersion}</p>
2022-02-06 12:47:14 +03:00
<p n : i f c o n t e n t >
2020-06-07 19:04:43 +03:00
{php echo OPENVK_ROOT_CONF["openvk"]["appearance"]["motd"]}
</p>
</div>
2022-01-09 08:47:57 +03:00
2022-05-09 16:01:37 +03:00
{include "components/cookies.xml"}
2021-10-15 23:05:27 +03:00
{script "js/node_modules/msgpack-lite/dist/msgpack.min.js"}
{script "js/node_modules/soundjs/lib/soundjs.min.js"}
2020-06-07 19:04:43 +03:00
{script "js/node_modules/ky/umd.js"}
{script "js/messagebox.js"}
2021-10-14 22:21:10 +03:00
{script "js/notifications.js"}
2020-06-07 19:04:43 +03:00
{script "js/scroll.js"}
2023-01-28 23:25:00 +03:00
{script "js/player.js"}
2020-06-07 19:04:43 +03:00
{script "js/al_wall.js"}
{script "js/al_api.js"}
2022-10-09 11:34:57 +03:00
{script "js/al_mentions.js"}
2022-10-11 19:04:43 +03:00
{script "js/al_polls.js"}
2022-01-09 08:47:57 +03:00
2021-10-15 23:05:27 +03:00
{ifset $thisUser}
{script "js/al_notifs.js"}
{/ifset}
2022-01-09 08:47:57 +03:00
2022-01-06 02:39:43 +03:00
{if OPENVK_ROOT_CONF['openvk']['preferences']['bellsAndWhistles']['fartscroll']}
<script src= "https://unpkg.com/fartscroll@1.0.0/fartscroll.js" > </script>
<script >
fartscroll(400);
</script>
{/if}
2022-01-09 08:47:57 +03:00
2023-01-28 23:25:00 +03:00
<script > bsdnHydrate();</script>
2022-01-09 08:47:57 +03:00
<script n:if= "OPENVK_ROOT_CONF['openvk']['telemetry']['plausible']['enable']" a s y n c d e f e r data-domain= "{php echo OPENVK_ROOT_CONF['openvk']['telemetry']['plausible']['domain']}" src= "{php echo OPENVK_ROOT_CONF['openvk']['telemetry']['plausible']['server']}js/plausible.js" > </script>
2022-03-29 12:06:43 +03:00
<script n:if= "OPENVK_ROOT_CONF['openvk']['telemetry']['piwik']['enable']" >
{var $piwik = (object) OPENVK_ROOT_CONF['openvk']['telemetry']['piwik']}
//< ![CDATA[
(function(window,document,dataLayerName,id){
window[dataLayerName]=window[dataLayerName]||[],window[dataLayerName].push({ start:(new Date).getTime(),event:"stg.start" });var scripts=document.getElementsByTagName('script')[0],tags=document.createElement('script');
function stgCreateCookie(a,b,c){ var d="";if(c){ var e=new Date;e.setTime(e.getTime()+24*c*60*60*1e3),d=";expires="+e.toUTCString() }document.cookie=a+"="+b+d+";path=/" }
var isStgDebug=(window.location.href.match("stg_debug")||document.cookie.match("stg_debug"))&&!window.location.href.match("stg_disable_debug"); stgCreateCookie("stg_debug",isStgDebug?1:"",isStgDebug?14:-1);
var qP=[];dataLayerName!=="dataLayer"&&qP.push("data_layer_name="+dataLayerName),isStgDebug&&qP.push("stg_debug"); var qPString=qP.length>0?("?"+qP.join("&")):"";
tags.async=!0,tags.src={$piwik->container . "/"}+id+".js"+qPString,scripts.parentNode.insertBefore(tags,scripts);
!function(a,n,i){ a[n]=a[n]||{ };for(var c=0;c<i.length ; c + + ) ! f u n c t i o n ( i ) { a [ n ] [ i ] = a [ n ] [ i ] | | { } , a [ n ] [ i ] .api= a[n][i].api||function(){ v a r a= [].slice.call(arguments,0);"string"==typeof a [ 0 ] & & w i n d o w [ d a t a L a y e r N a m e ] . p u s h ( { e v e n t : n + " . " + i + " : " + a [ 0 ] , p a r a m e t e r s : [ ] . s l i c e . c a l l ( a r g u m e n t s , 1 ) } ) } } ( i [ c ] ) } ( w i n d o w , " p p m s " , [ " t m " , " c m " ] ) ;
})(window,document,{$piwik->layer}, {$piwik->site});
//]]>
</script>
2022-03-29 12:32:03 +03:00
<script n:if= "OPENVK_ROOT_CONF['openvk']['telemetry']['matomo']['enable']" >
{var $matomo = (object) OPENVK_ROOT_CONF['openvk']['telemetry']['matomo']}
//< ![CDATA[
var _paq = window._paq = window._paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//" + {$matomo->container} + "/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', {$matomo->site}]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
//]]>
</script>
2022-01-09 08:47:57 +03:00
2021-10-07 11:48:55 +03:00
{ifset bodyScripts}
{include bodyScripts}
{/ifset}
2020-06-07 19:04:43 +03:00
</body>
</html>
2022-04-24 07:38:21 +03:00
{/if}
2020-06-07 19:04:43 +03:00
{if isset($parentModule) & & substr($parentModule, 0, 21) !== 'libchandler:absolute.'}
<!-- INCLUDING TEMPLATE FROM PARENTMODULE: {$parentModule} -->
2022-01-09 08:47:57 +03:00
2020-06-07 19:04:43 +03:00
{include content}
{/if}