Files
doitinpoland.com/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/class-wpml-rest-request-analyze-factory.php
2023-09-12 21:41:04 +02:00

22 lines
474 B
PHP

<?php
class WPML_REST_Request_Analyze_Factory {
/**
* @return WPML_REST_Request_Analyze
*/
public static function create() {
/**
* @var \WPML_URL_Converter $wpml_url_converter
* @var \WPML_Language_Resolution $wpml_language_resolution
*/
global $wpml_url_converter, $wpml_language_resolution;
return new WPML_REST_Request_Analyze(
$wpml_url_converter,
$wpml_language_resolution->get_active_language_codes(),
new WP_Rewrite()
);
}
}