PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/bettingbin.com/wp-content/themes/sinatra/inc/customizer/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //home/trave494/bettingbin.com/wp-content/themes/sinatra/inc/customizer/customizer-helpers.php

<?php
/**
 * Sinatra Customizer helper functions.
 *
 * @package     Sinatra
 * @author      Sinatra Team <hello@sinatrawp.com>
 * @since       1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Returns array of available widgets.
 *
 * @since 1.0.0
 * @return array, $widgets array of available widgets.
 */
function sinatra_get_customizer_widgets() {

	$widgets = array(
		'text'    => 'Sinatra_Customizer_Widget_Text',
		'nav'     => 'Sinatra_Customizer_Widget_Nav',
		'socials' => 'Sinatra_Customizer_Widget_Socials',
		'search'  => 'Sinatra_Customizer_Widget_Search',
		'button'  => 'Sinatra_Customizer_Widget_Button',
	);

	return apply_filters( 'sinatra_customizer_widgets', $widgets );
}

/**
 * Get choices for "Hide on" customizer options.
 *
 * @since  1.0.0
 * @return array
 */
function sinatra_get_display_choices() {

	// Default options.
	$return = array(
		'home'       => array(
			'title' => esc_html__( 'Home Page', 'sinatra' ),
		),
		'posts_page' => array(
			'title' => esc_html__( 'Blog / Posts Page', 'sinatra' ),
		),
		'search'     => array(
			'title' => esc_html__( 'Search', 'sinatra' ),
		),
		'archive'    => array(
			'title' => esc_html__( 'Archive', 'sinatra' ),
			'desc'  => esc_html__( 'Dynamic pages such as categories, tags, custom taxonomies...', 'sinatra' ),
		),
		'post'       => array(
			'title' => esc_html__( 'Single Post', 'sinatra' ),
		),
		'page'       => array(
			'title' => esc_html__( 'Single Page', 'sinatra' ),
		),
	);

	// Get additionally registered post types.
	$post_types = get_post_types(
		array(
			'public'   => true,
			'_builtin' => false,
		),
		'objects'
	);

	if ( is_array( $post_types ) && ! empty( $post_types ) ) {
		foreach ( $post_types as $slug => $post_type ) {
			$return[ $slug ] = array(
				'title' => $post_type->label,
			);
		}
	}

	return apply_filters( 'sinatra_display_choices', $return );
}

/**
 * Get device choices for "Display on" customizer options.
 *
 * @since  1.2.0
 * @return array
 */
function sinatra_get_device_choices() {

	// Default options.
	$return = array(
		'desktop' => array(
			'title' => esc_html__( 'Hide On Desktop', 'sinatra' ),
		),
		'tablet' => array(
			'title' => esc_html__( 'Hide On Tablet', 'sinatra' ),
		),
		'mobile' => array(
			'title' => esc_html__( 'Hide On Mobile', 'sinatra' ),
		),
	);

	return apply_filters( 'sinatra_device_choices', $return );
}