| Server IP : 109.122.246.182 / Your IP : 216.73.216.59 Web Server : Apache/2 System : Linux host3.abrin.cloud 6.1.0-52-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.180-1 (2026-08-03) x86_64 User : sinah533 ( 1085) PHP Version : 8.1.28 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sinah533/public_html/wp-content/plugins/elementor/modules/global-classes/utils/ |
Upload File : |
<?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;
}
}