%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/dordingu/public_html/hardkjarni/wp-content/plugins/the-events-calendar/common/src/Tribe/Shortcode/
Upload File :
Create Path :
Current File : /home/dordingu/public_html/hardkjarni/wp-content/plugins/the-events-calendar/common/src/Tribe/Shortcode/Utils.php

<?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;
	}
}

Zerion Mini Shell 1.0