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,19 @@
<?php
namespace WPML\Upgrade\Commands;
class RemoveRestDisabledNotice implements \IWPML_Upgrade_Command {
public function run_admin() {
wpml_get_admin_notices()->remove_notice( 'default', 'rest-disabled' );
return true;
}
public function run_ajax() {}
public function run_frontend() {}
public function get_results() {
return true;
}
}