PluginProbe
Polylang / 1.8
Polylang v1.8
3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 2.7 2.7.0.1 2.7.1 2.7.2 2.7.3 2.7.4 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.9 2.9.1 2.9.2 3.0 3.0.1 3.0.2 3.0.3 All 233 releases
polylang / include / language.php

language.php in Polylang 1.8, at include/language.php

223 lines 7.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /*
4 * a language object is made of two terms in 'language' and 'term_language' taxonomies
5 * manipulating only one object per language instead of two terms should make things easier
6 *
7 * properties:
8 * term_id => id of term in 'language' taxonomy
9 * name => language name. Ex: English
10 * slug => language code used in url. Ex: en
11 * term_group => order of the language when displayed in a list of languages
12 * term_taxonomy_id => term taxonomy id in 'language' taxonomy
13 * taxonomy => 'language'
14 * description => language locale for backward compatibility
15 * parent => 0 / not used
16 * count => number of posts and pages in that language
17 * tl_term_id => id of the term in 'term_language' taxonomy
18 * tl_term_taxonomy_id => term taxonomy id in 'term_language' taxonomy
19 * tl_count => number of terms in that language ( not used by Polylang )
20 * locale => WordPress language locale. Ex: en_US
21 * is_rtl => 1 if the language is rtl
22 * flag_code => code of the flag
23 * flag_url => url of the flag
24 * flag => html img of the flag
25 * custom_flag_url => url of the custom flag if exists, internal use only, moves to flag_url on frontend
26 * custom_flag => html img of the custom flag if exists, internal use only, moves to flag on frontend
27 * home_url => home url in this language
28 * search_url => home url to use in search forms
29 * host => host of this language
30 * mo_id => id of the post storing strings translations
31 * page_on_front => id of the page on front in this language ( set from PLL_Model )
32 * page_for_posts => id of the page for posts in this language ( set from PLL_Model )
33 *
34 * @since 1.2
35 */
36 class PLL_Language {
37 public $term_id, $name, $slug, $term_group, $term_taxonomy_id, $taxonomy, $description, $parent, $count;
38 public $tl_term_id, $tl_term_taxonomy_id, $tl_count;
39 public $locale, $is_rtl;
40 public $flag_url, $flag;
41 public $home_url, $search_url;
42 public $host, $mo_id;
43
44 /*
45 * constructor: builds a language object given its two corresponding terms in language and term_language taxonomies
46 *
47 * @since 1.2
48 *
49 * @param object|array $language 'language' term or language object properties stored as an array
50 * @param object $term_language corresponding 'term_language' term
51 */
52 public function __construct( $language, $term_language = null ) {
53 // build the object from all properties stored as an array
54 if ( empty( $term_language ) ) {
55 foreach ( $language as $prop => $value ) {
56 $this->$prop = $value;
57 }
58 }
59
60 // build the object from taxonomies
61 else {
62 foreach ( $language as $prop => $value ) {
63 $this->$prop = in_array( $prop, array( 'term_id', 'term_taxonomy_id', 'count' ) ) ? (int) $language->$prop : $language->$prop;
64 }
65
66 // although it would be convenient here, don't assume the term is shared between taxonomies as it may not be the case in future
67 // http://make.wordpress.org/core/2013/07/28/potential-roadmap-for-taxonomy-meta-and-post-relationships/
68 $this->tl_term_id = (int) $term_language->term_id;
69 $this->tl_term_taxonomy_id = (int) $term_language->term_taxonomy_id;
70 $this->tl_count = (int) $term_language->count;
71
72 // the description field can contain any property
73 // backward compatibility for is_rtl
74 $description = maybe_unserialize( $language->description );
75 foreach ( $description as $prop => $value ) {
76 'rtl' == $prop ? $this->is_rtl = $value : $this->$prop = $value;
77 }
78
79 $this->description = &$this->locale; // backward compatibility with Polylang < 1.2
80
81 $this->mo_id = PLL_MO::get_id( $this );
82 $this->set_flag();
83 }
84 }
85
86 /*
87 * sets flag_url and flag properties
88 *
89 * @since 1.2
90 */
91 public function set_flag() {
92 $flags['flag']['url'] = '';
93
94 // Polylang builtin flags
95 if ( ! empty( $this->flag_code ) && file_exists( POLYLANG_DIR . ( $file = '/flags/' . $this->flag_code . '.png' ) ) ) {
96 $flags['flag']['url'] = esc_url_raw( POLYLANG_URL . $file );
97
98 // if base64 encoded flags are preferred
99 if ( ! defined( 'PLL_ENCODED_FLAGS' ) || PLL_ENCODED_FLAGS ) {
100 $flags['flag']['src'] = 'data:image/png;base64,' . base64_encode( file_get_contents( POLYLANG_DIR . $file ) );
101 } else {
102 $flags['flag']['src'] = esc_url( POLYLANG_URL . $file );
103 }
104 }
105
106 // custom flags ?
107 if ( file_exists( PLL_LOCAL_DIR . ( $file = '/' . $this->locale . '.png' ) ) || file_exists( PLL_LOCAL_DIR . ( $file = '/' . $this->locale . '.jpg' ) ) ) {
108 $flags['custom_flag']['url'] = esc_url_raw( PLL_LOCAL_URL . $file );
109 $flags['custom_flag']['src'] = esc_url( PLL_LOCAL_URL . $file );
110 }
111
112 foreach ( $flags as $key => $flag ) {
113 $this->{$key . '_url'} = empty( $flag['url'] ) ? '' : $flag['url'];
114
115 $this->{$key} = apply_filters( 'pll_get_flag', empty( $flag['src'] ) ? '' :
116 sprintf(
117 '<img src="%s" title="%s" alt="%s" />',
118 $flag['src'],
119 esc_attr( apply_filters( 'pll_flag_title', $this->name, $this->slug, $this->locale ) ),
120 esc_attr( $this->name )
121 ),
122 $this->slug
123 );
124 }
125 }
126
127 /*
128 * replace flag by custom flag
129 * takes care of url scheme
130 *
131 * @since 1.7
132 */
133 public function set_custom_flag() {
134 // overwrite with custom flags on frontend only
135 if ( ! empty( $this->custom_flag ) ) {
136 $this->flag = $this->custom_flag;
137 $this->flag_url = $this->custom_flag_url;
138 unset( $this->custom_flag, $this->custom_flag_url ); // hide this
139 }
140
141 // set url scheme, also for default flags
142 if ( is_ssl() ) {
143 $this->flag = str_replace( 'http://', 'https://', $this->flag );
144 $this->flag_url = str_replace( 'http://', 'https://', $this->flag_url );
145 } else {
146 $this->flag = str_replace( 'https://', 'http://', $this->flag );
147 $this->flag_url = str_replace( 'https://', 'http://', $this->flag_url );
148 }
149 }
150
151 /*
152 * updates post and term count
153 *
154 * @since 1.2
155 */
156 public function update_count() {
157 wp_update_term_count( $this->term_taxonomy_id, 'language' ); // posts count
158 wp_update_term_count( $this->tl_term_taxonomy_id, 'term_language' ); // terms count
159 }
160
161 /*
162 * set home_url and search_url properties
163 *
164 * @since 1.3
165 *
166 * @param string $search_url
167 * @param string $home_url
168 */
169 public function set_home_url( $search_url, $home_url ) {
170 $this->search_url = $search_url;
171 $this->home_url = $home_url;
172 }
173
174 /*
175 * set home_url scheme
176 * this can't be cached accross pages
177 *
178 * @since 1.6.4
179 */
180 public function set_home_url_scheme() {
181 if ( is_ssl() ) {
182 $this->home_url = str_replace( 'http://', 'https://', $this->home_url );
183 $this->search_url = str_replace( 'http://', 'https://', $this->search_url );
184 }
185
186 else {
187 $this->home_url = str_replace( 'https://', 'http://', $this->home_url );
188 $this->search_url = str_replace( 'https://', 'http://', $this->search_url );
189 }
190 }
191
192 /*
193 * returns the language locale
194 * converts WP locales to W3C valid locales for display
195 * @see #33511
196 *
197 * @since 1.8
198 *
199 * @param string $filter either 'display' or 'raw', defaults to raw
200 * @return string
201 */
202 public function get_locale( $filter = 'raw' ) {
203 if ( 'display' == $filter ) {
204 static $valid_locales = array(
205 'bel' => 'be',
206 'bre' => 'br',
207 'de_DE_formal' => 'de_DE',
208 'dzo' => 'dz',
209 'ido' => 'io',
210 'kin' => 'rw',
211 'oci' => 'oc',
212 'mri' => 'mi',
213 'roh' => 'rm',
214 'srd' => 'sc',
215 'tuk' => 'tk',
216 );
217 $locale = isset( $valid_locales[ $this->locale ] ) ? $valid_locales[ $this->locale ] : $this->locale;
218 return str_replace( '_', '-', $locale );
219 }
220 return $this->locale;
221 }
222 }
223