File: /www/wwwroot/www.scdc-marine.com/wp-content/plugins/Polylang-Pro/modules/po/po-format.php
<?php
/**
* @package Polylang-Pro
*/
/**
* Class PLL_PO_Format
*
* @since 3.1
*
* Manages the support for Po format for Polylang Import / Export feature.
*/
class PLL_PO_Format extends PLL_File_Format {
/**
* @var string
*/
public $extension = 'po';
/**
* @var string[]
*/
public $mime_type = array( 'po' => 'text/x-po' );
/**
* Po format is always supported.
*
* @since 3.1
*
* @return true
*/
public function is_supported() {
return true;
}
/**
* Returns the associated import class.
*
* @since 3.1
*
* @return PLL_PO_Import
*/
public function get_import() {
return new PLL_PO_Import();
}
/**
* Returns the associated export class.
*
* @since 3.1
*
* @return PLL_PO_Export
*/
public function get_export() {
return new PLL_PO_Export();
}
}