WP_Script_Modules::get_import_map()
Returns the import map array.
Метод класса: WP_Script_Modules{}
Хуков нет.
Возвращает
Массив
. Array with an imports key mapping to an array of script module identifiers and their respective URLs, including the version query.
Использование
// private - только в коде основоного (родительского) класса $result = $this->get_import_map(): array;
Список изменений
С версии 6.5.0 | Введена. |
Код WP_Script_Modules::get_import_map() WP Script Modules::get import map WP 6.6.2
private function get_import_map(): array { $imports = array(); foreach ( $this->get_dependencies( array_keys( $this->get_marked_for_enqueue() ) ) as $id => $script_module ) { $imports[ $id ] = $this->get_src( $id ); } return array( 'imports' => $imports ); }