PATH:
home
/
letacommog
/
aacote
/
wp-content
/
themes
/
wyzi-business-finder
/
templates
/
headers
<?php // Block direct requests if ( ! defined( 'ABSPATH' ) ) { wp_die('No cheating'); } global $template_type; if( ! class_exists( 'WYZIHeaderFactory' ) ) { class WYZIHeaderFactory { public $header_type; private $the_header = NULL; private $WYZ_USER_ACCOUNT; public function __construct( $WUA ) { global $template_type; $template_type = wyz_get_theme_template(); $this->header_type = $template_type; $header_file_name = 'header-' . $this->header_type . '.php'; require_once( apply_filters( 'wyzi_header_template', WYZ_TEMPLATES_DIR . '/headers/' . $header_file_name, $template_type ) ); $this->WYZ_USER_ACCOUNT = $WUA; $this->the_header = new WYZIHeader( $this->WYZ_USER_ACCOUNT ); } public function the_utility_bar() { $this->the_header->the_utility_bar(); } public function the_main_header() { $this->the_header->the_main_header(); } public function the_subheader() { $this->the_header->the_subheader(); } public function the_header() { $this->the_header->start(); $this->the_header->the_utility_bar(); $this->the_header->the_main_header(); $this->the_header->the_subheader(); $this->the_header->close(); do_action( 'wyzi_after_header_menu' ); } } }
[+]
..
[-] header-2.php
[edit]
[-] header-factory.php
[edit]
[-] header.php
[edit]
[-] header-1.php
[edit]