File "utils.php"

Full Path: /home/rattkxnv/byattorney.com/wp-content/plugins/elementor/modules/atomic-widgets/styles/utils.php
File size: 288 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Elementor\Modules\AtomicWidgets\Styles;

class Utils {
	public static function generate_id( string $prefix = '', $existing_ids = [] ): string {
		do {
			$id = $prefix . wp_rand( 1000000, 9999999 );
		} while ( in_array( $id, $existing_ids, true ) );

		return $id;
	}
}