PluginProbe ʕ •ᴥ•ʔ
Loco Translate / 2.8.4
Loco Translate v2.8.4
2.8.5 2.8.4 2.5.8 2.6.0 2.6.1 2.6.10 2.6.11 2.6.12 2.6.13 2.6.14 2.6.2 2.6.3 2.6.4 2.6.5 2.6.6 2.6.7 2.6.8 2.6.9 2.7.0 2.7.1 2.7.2 2.7.3 2.8.0 2.8.1 2.8.2 2.8.3 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.2 1.2.1 1.2.2 1.3 1.3.1 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 2.0.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.15 2.0.16 2.0.17 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.0 2.2.1 2.2.2 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7
loco-translate / tpl / admin / debug / debug-layout.php
loco-translate / tpl / admin / debug Last commit date
debug-form.php 2 years ago debug-layout.php 1 month ago debug-result.php 2 years ago
debug-layout.php
38 lines
1 <?php
2
3 /* @var Loco_mvc_View $this */
4 $this->extend('../layout');
5 ?>
6 <style>
7 code.po {
8 font-weight: bold;
9 }
10 #loco-log textarea {
11 width: 100%;
12 font-size: 12px;
13 }
14 </style>
15 <?php
16
17 $this->block('header');
18
19 /* @var Loco_mvc_View $params */
20 /* @var ArrayIterator|null $log */
21 if( $params->has('log') ):?>
22 <div class="panel" id="loco-log">
23 <h3>
24 Trace log:
25 </h3>
26 <p>
27 If you're asking for help on the WordPress forum, please post the full text below.
28 </p>
29 <form action="#">
30 <textarea spellcheck="false" class="code" name="l" rows="<?=$log->count()?>"><?php echo $params->escape( implode("\n",iterator_to_array($log) ) );?></textarea>
31 </form>
32 </div><?php
33 endif;
34
35
36 /* @var string $form */
37 echo $form;
38