File "Utils.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Tribe/Shortcode/Utils.php
File size: 886 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Tribe\Shortcode;
/**
* Class Utils.
*
* @since 4.13.0
*
* @package Tribe\Shortcode
*/
class Utils {
/**
* Convert settings to a set of shortcode attributes.
*
* @since 4.13.0
*
* @param array<string,mixed> $settings Widget settings.
* @param array<string> $allowed Allowed settings for shortcode.
*
* @return string Shortcode attributes string.
*/
public static function get_attributes_string( $settings, $allowed = [] ) {
$settings_string = '';
$allowed = array_flip( $allowed );
foreach ( $settings as $key => $value ) {
if ( ! empty( $allowed ) && ! isset( $allowed[ $key ] ) ) {
continue;
}
$key = esc_attr( $key );
if ( is_array( $value ) ) {
$value = implode( ', ', $value );
}
$value = esc_attr( $value );
$settings_string .= " {$key}=\"{$value}\"";
}
return $settings_string;
}
}