mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
29 lines
564 B
PHP
29 lines
564 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Settings class for media language and translation management
|
||
|
*
|
||
|
* @since 1.8
|
||
|
*/
|
||
|
class PLL_Settings_Media extends PLL_Settings_Module {
|
||
|
|
||
|
/**
|
||
|
* Constructor
|
||
|
*
|
||
|
* @since 1.8
|
||
|
*
|
||
|
* @param object $polylang polylang object
|
||
|
*/
|
||
|
public function __construct( &$polylang ) {
|
||
|
parent::__construct(
|
||
|
$polylang,
|
||
|
array(
|
||
|
'module' => 'media',
|
||
|
'title' => __( 'Media', 'polylang' ),
|
||
|
'description' => __( 'Activate languages and translations for media', 'polylang' ),
|
||
|
'active_option' => 'media_support',
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
}
|