13 lines
276 B
PHP
13 lines
276 B
PHP
<?php
|
|
/**
|
|
* Main template
|
|
*/
|
|
$settings = $this->get_settings();
|
|
?>
|
|
<div class="jet-search"><?php
|
|
if ( 'true' === $settings['show_search_in_popup'] ) {
|
|
include $this->__get_global_template( 'popup' );
|
|
} else {
|
|
include $this->__get_global_template( 'form' );
|
|
}
|
|
?></div>
|