PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
search
/
layouts
/
fullscreen
<?php class FullscreenSearch extends WebOnCoreSearch { private static $instance; public function __construct() { parent::__construct(); add_action( 'webon_action_page_footer_template', array( $this, 'load_template' ), 11 ); //after footer } public static function get_instance() { if ( is_null( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } public function load_template() { if ( is_active_widget( false, false, 'webon_core_search_opener' ) ) { webon_core_template_part( 'search/layouts/' . $this->get_search_layout(), 'templates/' . $this->get_search_layout() ); } } }
[+]
..
[-] fullscreen.php
[edit]
[+]
templates
[-] include.php
[edit]
[+]
assets
[-] helper.php
[edit]