admin-fscheck.tpl.php
9 years ago
admin-list.tpl.php
9 years ago
admin-nav.tpl.php
9 years ago
admin-opts.tpl.php
9 years ago
admin-poedit.tpl.php
9 years ago
admin-poinit.tpl.php
9 years ago
admin-root.tpl.php
9 years ago
admin-nav.tpl.php
34 lines
| 1 | <?php |
| 2 | /** |
| 3 | * main nav on tabbed admin pages |
| 4 | */ |
| 5 | ?> |
| 6 | |
| 7 | <h2 class="nav-tab-wrapper"><?php |
| 8 | foreach( $nav as $label => $attrs ): |
| 9 | $href = $icon = ''; |
| 10 | extract( $attrs ); |
| 11 | if( $icon ){ |
| 12 | $icon = ' dashicons-before dashicons-'.$icon; |
| 13 | } |
| 14 | if( $href ):?> |
| 15 | <a href="<?php echo Loco::html($href)?>" class="nav-tab<?php echo $icon?>"> |
| 16 | <?php echo Loco::html($label)?> |
| 17 | </a><?php |
| 18 | else:?> |
| 19 | <a href="#" class="nav-tab nav-tab-active<?php echo $icon?>"> |
| 20 | <?php Loco::h($label)?> |
| 21 | </a><?php |
| 22 | endif; |
| 23 | endforeach?> |
| 24 | |
| 25 | <a href="https://localise.biz/about/gettext?<?php Loco::h( Loco::utm_query('nav') )?>" class="nav-tab nav-tab-loco" target="_blank"> |
| 26 | <?php Loco::h(__('Powered by','loco-translate'))?> |
| 27 | <?php Loco::h(__('Loco, Translation Management','loco-translate'))?> |
| 28 | </a> |
| 29 | </h2> |
| 30 | |
| 31 | <!--[if lt IE 9]><?php |
| 32 | LocoAdmin::warning( __( $ignore = 'Your browser is out of date!').' '.Loco::html( __('Loco may not work as expected','loco-translate') ) ); |
| 33 | ?><![endif]--> |
| 34 |