WS_OK_7.4.33 HEX
HEX
Server: nginx/1.21.4
System: Linux v12674 6.8.0-85-generic #85-Ubuntu SMP PREEMPT_DYNAMIC Thu Sep 18 15:26:59 UTC 2025 x86_64
User: endtheignorance (1014)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v12674/lcasandtonsa/public_html/wp-content/themes/lcoa-child/includes/helper-main-menu.php
<?php 

global $avia_config;



$responsive		= avia_get_option('responsive_active') != "disabled" ? "responsive" : "fixed_layout";

$headerS 		= avia_header_setting();

$social_args 	= array('outside'=>'ul', 'inside'=>'li', 'append' => '');

$icons 			= !empty($headerS['header_social']) ? avia_social_media_icons($social_args, false) : "";



if(isset($headerS['disabled'])) return;



?>



<header id='header' class='all_colors header_color <?php avia_is_dark_bg('header_color'); echo " ".$headerS['header_class']; ?>' <?php avia_markup_helper(array('context' => 'header','post_type'=>'forum'));?>>



<?php



if($responsive)

{

	echo '<a id="advanced_menu_toggle" href="#" '.av_icon_string('mobile_menu').'></a>';

	echo '<a id="advanced_menu_hide" href="#" 	'.av_icon_string('close').'></a>';

}





//subheader, only display when the user chooses a social header

if($headerS['header_topbar'] == true)

{

?>

		<div id='header_meta' class='container_wrap container_wrap_meta <?php echo avia_header_class_string(array('header_social', 'header_secondary_menu', 'header_phone_active'), 'av_'); ?>'>

		

			      <div class='container'>

			      <?php

			            /*

			            *	display the themes social media icons, defined in the wordpress backend

			            *   the avia_social_media_icons function is located in includes/helper-social-media-php

			            */

						$nav = "";

						

						//display icons

			            if(strpos( $headerS['header_social'], 'extra_header_active') !== false) echo $icons;

					

						//display navigation

						if(strpos( $headerS['header_secondary_menu'], 'extra_header_active') !== false )

						{

			            	//display the small submenu

			                $avia_theme_location = 'avia2';

			                $avia_menu_class = $avia_theme_location . '-menu';

			                $args = array(

			                    'theme_location'=>$avia_theme_location,

			                    'menu_id' =>$avia_menu_class,

			                    'container_class' =>$avia_menu_class,

			                    'fallback_cb' => '',

			                    'container'=>'',

			                    'echo' =>false

			                );

			                

			                $nav = wp_nav_menu($args);

						}

			                

						if(!empty($nav) || apply_filters('avf_execute_avia_meta_header', false))

						{

							echo "<nav class='sub_menu' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";

							echo $nav;

		                    do_action('avia_meta_header'); // Hook that can be used for plugins and theme extensions (currently: the wpml language selector)

							echo '</nav>';

						}

						

						

						//phone/info text	

						$phone			= $headerS['header_phone_active'] != "" ? $headerS['phone'] : "";
											

						$phone_class 	= !empty($nav) ? "with_nav" : "";

						//Jim Hinman Custom Options
						$lcoa_phone = get_option('lcoa_phone');
						$lcoa_address = get_option('lcoa_address');
						$lcoa_address_2 = get_option('lcoa_address_2');
						$lcoa_city = get_option('lcoa_city');
						$lcoa_state = get_option('lcoa_state');
						$lcoa_zip = get_option('lcoa_zip');

						if($phone) 		{ echo "<div class='phone-info {$phone_class}'><span><p class='small-info-header'><a href='tel:+1".$lcoa_phone."' onclick=\"ga('send', 'event', 'Contact', 'Click to Call', 'Header');\">".$lcoa_phone."</a><span class='header-address' style='color:#78BC1F;'>&nbsp;| ".$lcoa_address."&nbsp;".$lcoa_address_2."&nbsp;".$lcoa_city.",&nbsp;".$lcoa_state."&nbsp".$lcoa_zip."</span></p></span></div>"; }

			        ?>

			      </div>

		</div>



<?php } 

	

	

	

	$output 	 = "";

	$temp_output = "";

	$icon_beside = "";

	

	if($headerS['header_social'] == 'icon_active_main' && empty($headerS['bottom_menu']))

	{

		$icon_beside = " av_menu_icon_beside"; 

	}

	

	

	

	

	

	

?>

		<div  id='header_main' class='container_wrap container_wrap_logo'>

	

        <?php

        /*

        * Hook that can be used for plugins and theme extensions (currently:  the woocommerce shopping cart)

        */

        do_action('ava_main_header');

        

        if($headerS['header_position'] != "header_top") do_action('ava_main_header_sidebar');

		

	

				 $output .= "<div class='container av-logo-container'>";

				 

					$output .= "<div class='inner-container'>";

						

						/*

						*	display the theme logo by checking if the default logo was overwritten in the backend.

						*   the function is located at framework/php/function-set-avia-frontend-functions.php in case you need to edit the output

						*/

						$addition = false;

						if( !empty($headerS['header_transparency']) && !empty($headerS['header_replacement_logo']) )

						{

							$addition = "<img src='".$headerS['header_replacement_logo']."' class='alternate' alt='' title='' />";

						}

						

						$output .= avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);

						

							if(!empty($headerS['bottom_menu']))

							{

								ob_start();

								do_action('ava_before_bottom_main_menu'); // todo: replace action with filter, might break user customizations

								$output .= ob_get_clean();

							}

							

						    if($headerS['header_social'] == 'icon_active_main' && !empty($headerS['bottom_menu']))

						    {

							    $output .= $icons;

						    }

						    

						

						/*

						*	display the main navigation menu

						*   modify the output in your wordpress admin backend at appearance->menus

						*/

						    

						    if($headerS['bottom_menu'])

						    { 

							    $output .= "</div>";  

								$output .= "</div>";

								

								if( !empty( $headerS['header_menu_above'] ))

								{

									$avia_config['temp_logo_container'] = "<div class='av-section-bottom-logo header_color'>".$output."</div>";

									$output = "";

								}

								

								$output .= "<div id='header_main_alternate' class='container_wrap'>";

								$output .= "<div class='container'>";

							}

						

						

						    $output .= "<nav class='main_menu' data-selectname='".__('Select a page','avia_framework')."' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";

						        $avia_theme_location = 'avia';

						        $avia_menu_class = $avia_theme_location . '-menu';

						        $args = array(

						            'theme_location'	=> $avia_theme_location,

						            'menu_id' 			=> $avia_menu_class,

						            'menu_class'		=> 'menu av-main-nav',

						            'container_class'	=> $avia_menu_class.' av-main-nav-wrap'.$icon_beside,

						            'fallback_cb' 		=> 'avia_fallback_menu',

						            'echo' 				=>	false, 

						            'walker' 			=> new avia_responsive_mega_menu()

						        );

						

						        $main_nav = wp_nav_menu($args);

						        $output .= $main_nav;

						        

						      

						    /*

						    * Hook that can be used for plugins and theme extensions

						    */

						    ob_start();

						    do_action('ava_inside_main_menu'); // todo: replace action with filter, might break user customizations

						    $output .= ob_get_clean();

						    

						    if($icon_beside)

						    {

							    $output .= $icons; 

						    }

						        

						    $output .= '</nav>';

						

						    /*

						    * Hook that can be used for plugins and theme extensions

						    */

						    ob_start();

						    do_action('ava_after_main_menu'); // todo: replace action with filter, might break user customizations

							$output .= ob_get_clean();

				

					 /* inner-container */

			        $output .= "</div>";

						

		        /* end container */

		        $output .= " </div> ";

		   		

		   		

		   		//output the whole menu     

		        echo $output; 

		        

		        

		   ?>



		<!-- end container_wrap-->

		</div>

		

		<div class='header_bg'></div>



<!-- end header -->

</header>