HEX
Server: Apache
System: Linux p3plzcpnl505785.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: xuvi7odgswsg (6947073)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/xuvi7odgswsg/public_html/wp-content/themes/bb-theme/includes/customizer-functions.php
<?php

/**
 * Output list of all image sizes.
 *
 * @since 1.6
 * @return void
 */
function archive_post_image_sizes() {
	$options     = array();
	$image_sizes = get_intermediate_image_sizes();
	if ( count( $image_sizes ) ) {
		foreach ( $image_sizes as $image_size ) {
			$options[ $image_size ] = $image_size;
		}
	}

	return $options;
}

/**
 * Output list of all image sizes.
 *
 * @since 1.6
 * @return void
 */
function single_post_image_sizes() {
	$options     = array();
	$image_sizes = get_intermediate_image_sizes();
	if ( count( $image_sizes ) ) {
		foreach ( $image_sizes as $image_size ) {
			$options[ $image_size ] = $image_size;
		}
	}

	return $options;
}

/**
 * Setup filesystem singleton.
 * @since 1.6.5
 */
function fl_theme_filesystem() {
	if ( class_exists( 'FL_Filesystem' ) ) {
		return FL_Filesystem::instance();
	} else {
		return FL_Theme_Filesystem::instance();
	}
}

/**
 * Setup font size limit for slider
 * @since 1.7.5
 */
function get_font_size_limits() {
	$limits         = array();
	$limits['min']  = 10;
	$limits['max']  = 100;
	$limits['step'] = 1;

	return apply_filters( 'fl_theme_font_size_limits', $limits );
}