芝麻web文件管理V1.00
编辑当前文件:/home/dcqnetm/novia/wp-content/plugins/image-optimization/modules/oauth/components/checkpoint.php
make_request( 'POST', 'status/checkpoint', [ 'event_name' => $event_name, 'event_data' => $event_data, ] ); } /** * get_checkpoints * @return string[] */ public static function get_checkpoints(): array { return [ self::ON_DISCONNECT, self::ON_CONNECT, self::ON_ACTIVATE, self::ON_DEACTIVATE, ]; } public function __construct() { foreach ( self::get_checkpoints() as $checkpoint ) { add_action( $checkpoint, [ __CLASS__, 'event' ], 10, 0 ); } } }