HEX
Server: Apache
System: Linux webm014.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: circuix (152771)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/circuix/www/wp-content/plugins/elementor/modules/global-classes/utils/kit-utils.php
<?php

namespace Elementor\Modules\GlobalClasses\Utils;

use Elementor\Core\Base\Document;
use Elementor\Core\Kits\Documents\Kit;
use Elementor\Plugin;
use Elementor\TemplateLibrary\Source_Local;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

class Kit_Utils {
	/**
	 * Returns all kit documents on the current site.
	 *
	 * @return Kit[]
	 */
	public static function get_all_kit_documents(): array {
		$kit_ids = get_posts( [
			'post_type'              => Source_Local::CPT,
			'post_status'            => 'any',
			'fields'                 => 'ids',
			'posts_per_page'         => -1,
			'no_found_rows'          => true,
			'update_post_meta_cache' => false,
			'meta_query'             => [
				[
					'key'   => Document::TYPE_META_KEY,
					'value' => 'kit',
				],
			],
		] );

		$kits = [];

		foreach ( $kit_ids as $kit_id ) {
			$kit = Plugin::$instance->kits_manager->get_kit( $kit_id );

			if ( $kit ) {
				$kits[] = $kit;
			}
		}

		return $kits;
	}
}