16 lines
345 B
PHP
16 lines
345 B
PHP
<?php
|
|
|
|
class WPML_Post_Status_Display_Factory {
|
|
|
|
/** @var SitePress $sitepress */
|
|
private $sitepress;
|
|
|
|
public function __construct( SitePress $sitepress = null ) {
|
|
$this->sitepress = $sitepress ?: $GLOBALS['sitepress'];
|
|
}
|
|
|
|
public function create() {
|
|
return new WPML_Post_Status_Display( $this->sitepress->get_active_languages() );
|
|
}
|
|
}
|