Language.php
1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
namespace ACP\Column\User;
use AC;
use ACP\Editing;
use ACP\Filtering;
use ACP\Search;
use ACP\Sorting;
/**
* @since 4.2
*/
class Language extends AC\Column\Meta
implements Editing\Editable, Filtering\Filterable, Sorting\Sortable, Search\Searchable {
public function __construct() {
$this->set_type( 'column-user_default_language' );
$this->set_label( __( 'Language' ) );
}
public function get_meta_key() {
return 'locale';
}
public function get_value( $id ) {
$translations = ( new AC\Helper\User() )->get_translations_remote();
$locale = $this->get_raw_value( $id );
if ( ! isset( $translations[ $locale ] ) ) {
return ac_helper()->html->tooltip( $this->get_empty_char(), _x( 'Site Default', 'default site language' ) );
}
return $translations[ $locale ]['native_name'];
}
/**
* @return array
*/
public function get_language_options() {
$translations = ( new AC\Helper\User() )->get_translations_remote();
$options = [];
foreach ( get_available_languages() as $language ) {
$options[ $language ] = isset( $translations[ $language ] )
? $translations[ $language ]['native_name']
: $language;
}
natcasesort( $options );
return $options;
}
public function editing() {
return new Editing\Service\User\Language( $this->get_language_options() );
}
public function filtering() {
return new Filtering\Model\User\Language( $this );
}
public function sorting() {
return new Sorting\Model\User\Meta( $this->get_meta_key() );
}
public function search() {
return new Search\Comparison\User\Languages( $this->get_language_options() );
}
}