mirror of
https://github.com/WenPai-org/wp-china-yes.git
synced 2025-08-08 14:59:18 +08:00
27 lines
1,014 B
PHP
27 lines
1,014 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Common links below variable setup header.
|
||
|
*/
|
||
|
|
||
|
$help = esc_url( apply_filters('loco_external','https://localise.biz/wordpress/plugin/manual/bundle-setup') );
|
||
|
|
||
|
if( $params->has('notices') ):?>
|
||
|
<ul class="problems"><?php
|
||
|
foreach( $params->notices as $text ):?>
|
||
|
<li class="has-icon icon-remove">
|
||
|
<?php echo $params->escape( $text )?>
|
||
|
</li><?php
|
||
|
endforeach?>
|
||
|
</ul><?php
|
||
|
endif?>
|
||
|
|
||
|
<p class="submit">
|
||
|
<a href="<?php $tabs[2]->e('href')?>" class="button button-link has-icon icon-wrench"><?php esc_html_e('Advanced configuration','loco-translate')?></a>
|
||
|
</p>
|
||
|
<p>
|
||
|
<a href="<?php $tabs[1]->e('href')?>&xml=1" class="button button-link has-icon icon-upload"><?php esc_html_e('Import config from XML','loco-translate')?></a>
|
||
|
</p>
|
||
|
<p>
|
||
|
<a href="<?php echo $help?>" class="button button-link has-icon icon-help" target="_blank"><?php esc_html_e('Get help with this','loco-translate')?></a>
|
||
|
</p>
|