first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
/**
* Fetch the wpml config files for known plugins and themes
*
* @package wpml-core
*/
function update_wpml_config_index_event() {
global $sitepress;
$http = new WP_Http();
$log = new WPML_Config_Update_Log();
$update_wpml_config = new WPML_Config_Update( $sitepress, $http, $log );
return $update_wpml_config->run();
}