Introduces new core abstractions and module management classes, adds several new modules (modern cache, REST API, SEO enhancement), and removes deprecated/disabled assets and code. Updates vendor dependencies, including Symfony components and php-opencc, and cleans up related files. This refactor improves code organization, extensibility, and modernizes the plugin's architecture.
18 lines
No EOL
297 B
PHP
18 lines
No EOL
297 B
PHP
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
interface WPCC_Converter_Interface {
|
|
|
|
public function convert( $text, $target_variant );
|
|
|
|
public function get_supported_variants();
|
|
|
|
public function get_engine_name();
|
|
|
|
public function get_engine_info();
|
|
|
|
public function is_available();
|
|
} |