6c9485e3a1
Baseline before backporting wp-data-optimizer v3.0.1-v3.4.6. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01TbG1keQQ7XBa7qMQY16KCY
42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* TMDO_Mobile_Bridge — integration with 2meet-mobile-bridge (Wave 3 / v2.2.0).
|
|
*
|
|
* 1 張表(refresh tokens)。簡單註冊。
|
|
*
|
|
* @package WP_Data_Optimizer
|
|
* @since 2.0.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
// phpcs:disable Squiz.Commenting.FunctionComment.Missing,Squiz.Commenting.InlineComment.InvalidEndChar,Generic.Commenting.DocComment.MissingShort,WordPress.DB.PreparedSQL.InterpolatedNotPrepared,WordPress.PHP.YodaConditions,Generic.CodeAnalysis.EmptyStatement -- v2.0.0 partner integrations: pure registration helpers + intentional silent catches.
|
|
|
|
/**
|
|
* 2meet-mobile-bridge 整合。
|
|
*/
|
|
final class TMDO_Mobile_Bridge {
|
|
|
|
public static function register(): void {
|
|
$detected = class_exists( 'TMEETMB_Plugin' )
|
|
|| file_exists( WP_PLUGIN_DIR . '/2meet-mobile-bridge/2meet-mobile-bridge.php' );
|
|
if ( ! $detected ) {
|
|
return;
|
|
}
|
|
add_action( 'wpdo_register_custom_tables', array( __CLASS__, 'register_custom_tables' ) );
|
|
}
|
|
|
|
public static function register_custom_tables( TMDO_Custom_Table_Registry $registry ): void {
|
|
$registry->register(
|
|
'2meet-mobile-bridge',
|
|
array(
|
|
'table_name' => '2meet_refresh_tokens',
|
|
'primary_key' => 'id',
|
|
'post_type_link' => null,
|
|
)
|
|
);
|
|
}
|
|
}
|