📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-01 07:35:49
📂
/ (Root)
/
home
/
orkouolp
/
web
/
orkofarms.com
/
wp-content
/
plugins
/
elementor
/
core
/
utils
📍 /home/orkouolp/web/orkofarms.com/wp-content/plugins/elementor/core/utils
🔄 Refresh
✏️
Editing: template-library-element-iterator.php
Writable
<?php namespace Elementor\Core\Utils; use Elementor\Plugin; if ( ! defined( 'ABSPATH' ) ) { exit; } class Template_Library_Element_Iterator { public static function iterate( array $elements, callable $callback ): array { if ( ! self::is_valid_elements_array( $elements ) ) { return $elements; } return Plugin::instance()->db->iterate_data( $elements, $callback ); } private static function is_valid_elements_array( array $elements ): bool { if ( empty( $elements ) ) { return true; } if ( isset( $elements['elType'] ) ) { return true; } $first_element = reset( $elements ); return is_array( $first_element ) && ( isset( $first_element['elType'] ) || isset( $first_element['id'] ) || empty( $first_element ) ); } }
💾 Save Changes
❌ Cancel