Files
tysweld.com/wp-content/plugins/polylang-pro/services/exporter/export-data-from-strings.php
2025-02-24 22:33:42 +01:00

68 lines
1.7 KiB
PHP

<?php
/**
* @package Polylang-Pro
*/
/**
* Handles the admin action of exporting strings translations.
*
* @since 3.6
*/
class PLL_Export_Data_From_Strings {
/**
* Used to query languages and translations.
*
* @var PLL_Model
*/
private $model;
/**
* Constructor.
*
* @since 3.6
*
* @param PLL_Model $model Polylang model.
*/
public function __construct( PLL_Model $model ) {
$this->model = $model;
}
/**
* Prepares and exports the selected strings translations.
*
* @since 3.6
*
* @param PLL_Export_Container $container Export container.
* @param PLL_Language $target_language The target language.
* @param string $group String translation context to export.
* @return WP_Error A `WP_Error` object. Note: an "empty" `WP_Error` object is returned on success.
*/
public function send_to_export( PLL_Export_Container $container, PLL_Language $target_language, string $group ): WP_Error {
$source_language = $this->model->get_default_language();
if ( empty( $source_language ) ) {
return new WP_Error( 'pll_export_no_source_language', __( 'Error: Default language not defined.', 'polylang-pro' ) );
}
$translations = new PLL_Export_Strings( $this->model );
$sources = PLL_Admin_Strings::get_strings();
if ( '' !== $group ) {
$sources = array_filter(
$sources,
function ( $source ) use ( $group ) {
return $group === $source['context'];
}
);
}
if ( empty( $sources ) ) {
return new WP_Error( 'pll_export_no_strings', __( 'Error: No strings found.', 'polylang-pro' ) );
}
$translations->add_items( $container, $sources, $target_language );
return new WP_Error();
}
}