File manager - Edit - /home/verseaumee/blueversion/wp-content/plugins/weglot/src/services/class-pdf-translate-service-weglot.php
Back
<?php namespace WeglotWP\Services; if ( ! defined( 'ABSPATH' ) ) { exit; } use Weglot\Parser\Parser; use Weglot\Parser\ConfigProvider\ServerConfigProvider; /** * @since 3.7 */ class Pdf_Translate_Service_Weglot { /** * @var Option_Service_Weglot */ private $option_services; /** * @var Parser_Service_Weglot */ private $parser_services; /** * @var Language_Service_Weglot */ private $language_services; /** * @since 3.7 */ public function __construct() { $this->option_services = weglot_get_service( 'Option_Service_Weglot' ); $this->parser_services = weglot_get_service( 'Parser_Service_Weglot' ); $this->language_services = weglot_get_service( 'Language_Service_Weglot' ); } /** * Translate pdf with parser * * @param string $content * @param string $language * * @return string|array<string,mixed> * @throws \Exception * @version 3.7 */ public function translate_pdf( $content, $language ) { $api_key = $this->option_services->get_option( 'api_key' ); if ( ! $api_key ) { return $content; } try { $original_language = $this->language_services->get_original_language()->getInternalCode(); $exclude_blocks = $this->option_services->get_exclude_blocks(); $config = new ServerConfigProvider(); $client = $this->parser_services->get_client(); $parser = new Parser( $client, $config, $exclude_blocks ); $translated_content = $parser->translate( $content, $original_language, $language ); //phpcs:ignore return array( 'content' => $translated_content, ); } catch ( \Exception $e ) { return $content; } } }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings