HEX
Server: Apache
System: Linux 162-240-236-42.bluehost.com 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
User: bt667 (1004)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/bt667/public_html/wp-content/themes/news-event/inc/extras/extras.php
<?php
/**
 * Handles the functionality required for the theme
 * 
 * @package News Event
 * @since 1.0.0
 */
use NewsEvent\CustomizerDefault as NEV;

if ( ! function_exists( 'news_event_typography_value' ) ) :
	/**
	 * Adds two typography parameter
	 *
	 * @echo html markup attributes
	 */
	function news_event_typography_value( $id ) {
		$typo = NEV\news_event_get_customizer_option( $id );
		$font_family = $typo['font_family']['value'];
		$font_weight = $typo['font_weight']['value'];
		$variant = ( $typo['font_weight']['variant'] === 'italic' ) ? 'ital' : 'wght';
		$typo_value = [
			'font_family'	=> $font_family,
			'font_weight'	=> $font_weight,
			'variant'	=> $typo['font_weight']['variant']
		];
		return apply_filters( 'news_event_combined_typo', $typo_value ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	}
	add_filter( 'news_event_typo_combine_filter', 'news_event_typography_value', 10, 1 );
endif;

if ( ! function_exists( 'news_event_schema_body_attributes' ) ) :
	/**
	 * Adds schema tags to the body tag.
	 *
	 * @echo html markup attributes
	 */
	function news_event_schema_body_attributes() {
		$site_schema_ready = NEV\news_event_get_customizer_option( 'site_schema_ready' );
		if( ! $site_schema_ready ) return;
		$is_blog = ( is_home() || is_archive() || is_attachment() || is_tax() || is_single() );
		$itemtype = 'WebPage'; // default itemtype
		$itemtype = ( $is_blog ) ? 'Blog' : $itemtype; // itemtype for blog page
		$itemtype = ( is_search() ) ? 'SearchResultsPage' : $itemtype; // itemtype for earch results page
		$itemtype_final = apply_filters( 'news_event_schema_body_attributes_itemtype', $itemtype ); // itemtype
		echo apply_filters( 'news_event_schema_body_attributes', "itemtype='https://schema.org/" . esc_attr( $itemtype_final ) . "' itemscope='itemscope'" ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	}
endif;

if ( ! function_exists( 'news_event_schema_article_attributes' ) ) :
	/**
	 * Adds schema tags to the article tag.
	 *
	 * @echo html markup attributes
	 */
	function news_event_schema_article_attributes() {
		$site_schema_ready = NEV\news_event_get_customizer_option( 'site_schema_ready' );
		if( ! $site_schema_ready ) return;
		$itemtype = 'Article'; // default itemtype.
		$itemtype_final = apply_filters( 'news_event_schema_article_attributes_itemtype', $itemtype ); // itemtype
		echo apply_filters( 'news_event_schema_article_attributes', "itemtype='https://schema.org/" . esc_attr( $itemtype_final ) . "' itemscope='itemscope'" ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	}
endif;

if ( ! function_exists( 'news_event_schema_article_name_attributes' ) ) :
	/**
	 * Adds schema tags to the article name tag.
	 *
	 * @echo html markup attributes
	 */
	function news_event_schema_article_name_attributes() {
		$site_schema_ready = NEV\news_event_get_customizer_option( 'site_schema_ready' );
		if( ! $site_schema_ready ) return;
		$itemprop = 'name'; // default itemprop.
		$itemprop_final = apply_filters( 'news_event_schema_article_name_attributes_itemprop', $itemprop ); // itemprop
		return apply_filters( 'news_event_schema_article_name_attributes', "itemprop='" . esc_attr( $itemprop_final ) . "'" ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	}
endif;

if ( ! function_exists( 'news_event_schema_article_body_attributes' ) ) :
	/**
	 * Adds schema tags to the article body tag.
	 *
	 * 
	 * @echo html markup attributes
	 */
	function news_event_schema_article_body_attributes() {
		$site_schema_ready = NEV\news_event_get_customizer_option( 'site_schema_ready' );
		if( ! $site_schema_ready ) return;
		$itemprop = 'articleBody'; // default itemprop.
		$itemprop_final = apply_filters( 'news_event_schema_article_body_attributes_itemprop', $itemprop ); // itemprop
		echo apply_filters( 'news_event_schema_article_body_attributes', "itemprop='" . esc_attr( $itemprop_final ) . "'" ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	}
endif;

if( ! function_exists( 'news_event_compare_wand' ) ) :
	/**
	 * Compares parameter valaues
	 * 
	 * @package News Event
	 * @since 1.0.0
	 */
	function news_event_compare_wand($params) {
		$returnval = true;
		foreach($params as $val) {
			if( ! $val ) {
				$returnval = false;
				break;
			}
		}
		return $returnval;
	}
endif;

if( ! function_exists( 'news_event_function_exists' ) ) :
	/**
	 * Checks exists
	 * 
	 * @package News Event
	 * @since 1.0.0
	 */
	function news_event_function_exists($function) {
		if( function_exists( $function ) ) return true;
		return;
	}
endif;

if( ! function_exists( 'news_event_get_date_format_array_args' ) ) :
	/**
	 * Generate date format array for query arguments
	 * 
	 * @package News Event
	 * @since 1.0.0
	 */
	function news_event_get_date_format_array_args($date_key) {
		switch($date_key) {
			case 'today': $todayDate = getdate();
							return array(
								'year'  => $todayDate['year'],
								'month' => $todayDate['mon'],
								'day'   => $todayDate['mday'],
							);
						break;
			case 'this-week': return array(
								'year'  => date( 'Y' ),
								'week'  => date( 'W' )
							);
						break;
			case 'last-seven-days': return array(
							'after'  => '1 week ago'
						);
					break;
			case 'this-month': $todayDate = getdate();
							return array(
								'month' => $todayDate['mon']
							);
						break;
			case 'last-month': 
						$thisdate = getdate();
						if ($thisdate['mon'] != 1) :
							$lastmonth = $thisdate['mon'] - 1;
						else : 
							$lastmonth = 12;
						endif; 
						$thisyear = date('Y');
						if ($lastmonth != 12) :
							$thisyear = date('Y');
						else: 
							$thisyear = date('Y') - 1;
						endif;
							return array(
								'year'  => $thisyear,
								'month'  => $lastmonth
							);
						break;
			case 'last-week':
						$thisweek = date('W');
						if ($thisweek != 1) :
							$lastweek = $thisweek - 1;
						else : 
							$lastweek = 52;
						endif; 
						$thisyear = date('Y');
						if ($lastweek != 52) :
							$thisyear = date('Y');
						else: 
							$thisyear = date('Y') -1; 
						endif;
						return array(
							'year'  => $thisyear,
							'week'  => $lastweek
						);
				break;
			default: return [];
		}
	}
endif;

if( ! function_exists( 'news_event_is_elementor_activated' ) ) :
	/**
	 * check if elementor is active
	 * 
	 * @package News Event
	 * @since  1.0.0
	 */
	function news_event_is_elementor_activated( $id ) {
		if( ! class_exists( '\Elementor\Plugin' ) ) {
			return;
		}

		if ( version_compare( ELEMENTOR_VERSION, '1.5.0', '<' ) ) {
			return ( 'builder' === Elementor\Plugin::$instance->db->get_edit_mode( $id ) );
		} else {
			$document = Elementor\Plugin::$instance->documents->get( $id );
			if ( $document ) {
				return $document->is_built_with_elementor();
			} else {
				return false;
			}
		}
	}
endif;

if( ! function_exists( 'news_event_numbering_with_pad_format' ) ) :
	/**
	 * convert single digit number to double digit
	 * 
	 * @package News Event
	 * @since  1.0.0
	 */
	function news_event_numbering_with_pad_format( $number ) {
		if( $number > 9 ) return apply_filters( 'news_event_numbering_with_pad_format_filter', $number );
		$number = str_pad($number, 2, '0', STR_PAD_LEFT);
		return apply_filters( 'news_event_numbering_with_pad_format_filter', $number );
	}
endif;

if( !function_exists( 'news_event_get_customizer_sidebar_array' ) ) :
    /**
     * Gets customizer "sidebar layouts" array
     * 
     * @package News Event
     * @since 1.0.0
     * 
     */
    function news_event_get_customizer_sidebar_array() {
        return array(
            'no-sidebar' => array(
                'label' => esc_html__( 'No Sidebar', 'news-event' ),
                'url'   => '%s/assets/images/customizer/no_sidebar.jpg'
            ),
            'left-sidebar' => array(
                'label' => esc_html__( 'Left Sidebar', 'news-event' ),
                'url'   => '%s/assets/images/customizer/left_sidebar.jpg'
            ),
            'right-sidebar' => array(
                'label' => esc_html__( 'Right Sidebar', 'news-event' ),
                'url'   => '%s/assets/images/customizer/right_sidebar.jpg'
            ),
            'both-sidebar' => array(
                'label' => esc_html__( 'Both Sidebar', 'news-event' ),
                'url'   => '%s/assets/images/customizer/both_sidebar.jpg'
            ),
            'left-both-sidebar' => array(
                'label' => esc_html__( 'Left Both Sidebar', 'news-event' ),
                'url'   => '%s/assets/images/customizer/left_both_sidebar.jpg'
            ),
            'right-both-sidebar' => array(
                'label' => esc_html__( 'Right Both Sidebar', 'news-event' ),
                'url'   => '%s/assets/images/customizer/right_both_sidebar.jpg'
            )
        );
    }
 endif;

/**
 * Checks if the the post exists or returns site url 
*
* @package News Event
* @since 1.0.0
*/
function news_event_get_random_news_url() {
	$random_news = get_posts([
		'numberposts' => 1,
		'post_type' => 'post',
		'ignore_sticky_posts'    => true,
		'orderby' => 'rand'
	]);
	$url = ($random_news) ? get_the_permalink($random_news[0]->ID ) : home_url();
	return apply_filters( 'news_event_get_random_news_url_filter', esc_url($url) );
}

 /**
  * Checks if the page url is occupied by theme query params 
  *
  * @package News Event
  * @since 1.0.0
  */
 function news_event_is_paged_filtered() {
	if( ! isset( $_GET['newseventargs'] ) ) return;
	return true;
 }

 /**
  * Returns the width layout value of each section with given param 
  *
  * @package News Event
  * @since 1.0.0
  */
  function news_event_get_section_width_layout_val($control = '') {
	if( $control ) :
		$single_control_value = NEV\news_event_get_customizer_option( $control );
		$control_val = ( $single_control_value == 'global' ) ? NEV\news_event_get_customizer_option( 'website_content_layout' ) : $single_control_value;
		return apply_filters( 'news_event_width_layout_filter', esc_html( $control_val ) );
	else :
		if( is_404() ) {
			$single_control_value = NEV\news_event_get_customizer_option( 'error_page_width_layout' );
			$control_val = ( $single_control_value == 'global' ) ? NEV\news_event_get_customizer_option( 'website_content_layout' ) : $single_control_value;
			return apply_filters( 'news_event_width_layout_filter', esc_html( $control_val ) );
		} else if( is_search() ) {
			$single_control_value = NEV\news_event_get_customizer_option( 'search_page_width_layout' );
			$control_val = ( $single_control_value == 'global' ) ? NEV\news_event_get_customizer_option( 'website_content_layout' ) : $single_control_value;
			return apply_filters( 'news_event_width_layout_filter', esc_html( $control_val ) );
		} else if( is_page() ) {
			$current_post_id = get_queried_object_id();
			// default value set for post width layout.
			if( !metadata_exists( 'post', $current_post_id, 'post_width_layout' ) ) {
				// add post width layout value "custmomizer-setting".
				update_post_meta( $current_post_id, 'post_width_layout', 'customizer-setting' );
			}
			$post_width_layout = get_post_meta( $current_post_id, 'post_width_layout', true );
			if( $post_width_layout != 'customizer-setting' ) {
				$control_val = $post_width_layout;
			} else {
				$single_control_value = NEV\news_event_get_customizer_option( 'single_page_width_layout' );
				$control_val = ( $single_control_value == 'global' ) ? NEV\news_event_get_customizer_option( 'website_content_layout' ) : $single_control_value;
			}
			return apply_filters( 'news_event_width_layout_filter', esc_html( $control_val ) );
		} else if( is_single() ) {
			$current_post_id = get_queried_object_id();
			// default value set for post width layout.
			if( !metadata_exists( 'post', $current_post_id, 'post_width_layout' ) ) {
				// add post width layout value "custmomizer-setting".
				update_post_meta( $current_post_id, 'post_width_layout', 'customizer-setting' );
			}
			$post_width_layout = get_post_meta( $current_post_id, 'post_width_layout', true );
			if( $post_width_layout != 'customizer-setting' ) {
				$control_val = $post_width_layout;
			} else {
				$single_control_value = NEV\news_event_get_customizer_option( 'single_post_width_layout' );
				$control_val = ( $single_control_value == 'global' ) ? NEV\news_event_get_customizer_option( 'website_content_layout' ) : $single_control_value;
			}
			return apply_filters( 'news_event_width_layout_filter', esc_html( $control_val ) );
		} else if( is_archive() || is_home() ) {
			$single_control_value = NEV\news_event_get_customizer_option( 'archive_width_layout' );
			$control_val = ( $single_control_value == 'global' ) ? NEV\news_event_get_customizer_option( 'website_content_layout' ) : $single_control_value;
			return apply_filters( 'news_event_width_layout_filter', esc_html( $control_val ) );
		}
	endif;
 }