wp-chinese-converter/includes/core/interface-converter.php
feibisi 81b2237d50 Refactor core and modules, update dependencies
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.
2025-09-28 04:43:51 +08:00

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();
}