| Server IP : 89.108.64.180 / Your IP : 216.73.217.95 Web Server : Apache/2.4.41 (Ubuntu) System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-root ( 1010) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/www-root/data/www/spacev13.ru/wp-content/plugins/loco-translate/tpl/admin/ |
Upload File : |
<?php
/**
* Base layout for all admin pages
*/
?><div class="wrap" id="loco"><?php
if( $this->has('breadcrumb') ):?>
<h1>
<ul><?php
/* @var Loco_mvc_ViewParams[] $breadcrumb */
foreach( $breadcrumb as $item ):?>
<li><?php
if( $item->href ):?>
<a href="<?php $item->e('href')?>">
<?php $item->e('name')?>
</a><?php
else:?>
<span>
<?php $item->e('name')?>
</span><?php
endif?>
</li><?php
endforeach?>
</ul>
</h1><?php
elseif( $this->has('title') ):?>
<h1>
<?php $params->e('title')?>
</h1><?php
endif;
if( $this->has('tabs') ):?>
<h2 class="nav-tab-wrapper"><?php
/* @var Loco_mvc_ViewParams[] $tabs */
foreach( $tabs as $item ):?>
<a href="<?php $item->e('href')?>" class="nav-tab<?php echo $item->active?' nav-tab-active':''?>">
<?php $item->e('name')?>
</a><?php
endforeach;?>
</h2><?php
endif?>
<div id="loco-notices">
<noscript>
<div class="notice inline notice-danger">
<p>
<strong class="has-icon icon-warn">JavaScript disabled:</strong>
<span>Loco Translate requires JavaScript for most functions to work as expected.</span>
</p>
</div>
</noscript><?php
// flush message buffer
do_action('loco_admin_notices');
// standard file system dialogues
if( $params->has('fsFields') ):
echo $this->render('common/inc-fsconn');
endif;?>
</div>
<div id="loco-content">
<?php echo $this->_content;?>
</div>
</div>
<?php
/* @var Loco_mvc_ViewParams $js */
if( $this->has('js') ):?>
<script>
/*<![CDATA[*/
window.locoConf = <?php echo $js->exportJson()?>;
/*]]>*/
</script><?php
endif;