plugin updates

This commit is contained in:
Tony Volpe
2024-02-21 16:19:46 +00:00
parent c72f206574
commit 21d4c85c00
1214 changed files with 102269 additions and 179257 deletions

View File

@@ -106,4 +106,15 @@ class LegacyProxy {
public function get_global( string $global_name ) {
return $GLOBALS[ $global_name ];
}
/**
* Terminates execution of the script.
*
* @param int|string $status An error code to be returned, or an error message to be shown.
* @return void
*/
public function exit( $status = '' ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
exit( $status );
}
}