PluginProbe
Polylang / 2.3.1
Polylang v2.3.1
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 2.3.1, at include/language.php

232 lines 7.8 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 * w3c => W3C locale
23 * flag_code => code of the flag
24 * flag_url => url of the flag
25 * flag => html img of the flag
26 * custom_flag_url => url of the custom flag if exists, internal use only, moves to flag_url on frontend
27 * custom_flag => html img of the custom flag if exists, internal use only, moves to flag on frontend
28 * home_url => home url in this language
29 * search_url => home url to use in search forms
30 * host => host of this language
31 * mo_id => id of the post storing strings translations
32 * page_on_front => id of the page on front in this language ( set from pll_languages_list filter )
33 * page_for_posts => id of the page for posts in this language ( set from pll_languages_list filter )
34 *
35 * @since 1.2
36 */
37 class PLL_Language {
38 public $term_id, $name, $slug, $term_group, $term_taxonomy_id, $taxonomy, $description, $parent, $count;
39 public $tl_term_id, $tl_term_taxonomy_id, $tl_count;
40 public $locale, $is_rtl;
41 public $w3c, $facebook;
42 public $flag_url, $flag;
43 public $home_url, $search_url;
44 public $host, $mo_id;
45 public $page_on_front, $page_for_posts;
46
47 /**
48 * Constructor: builds a language object given its two corresponding terms in language and term_language taxonomies
49 *
50 * @since 1.2
51 *
52 * @param object|array $language 'language' term or language object properties stored as an array
53 * @param object $term_language Corresponding 'term_language' term
54 */
55 public function __construct( $language, $term_language = null ) {
56 // Build the object from all properties stored as an array
57 if ( empty( $term_language ) ) {
58 foreach ( $language as $prop => $value ) {
59 $this->$prop = $value;
60 }
61 }
62
63 // Build the object from taxonomies
64 else {
65 foreach ( $language as $prop => $value ) {
66 $this->$prop = in_array( $prop, array( 'term_id', 'term_taxonomy_id', 'count' ) ) ? (int) $language->$prop : $language->$prop;
67 }
68
69 $this->tl_term_id = (int) $term_language->term_id;
70 $this->tl_term_taxonomy_id = (int) $term_language->term_taxonomy_id;
71 $this->tl_count = (int) $term_language->count;
72
73 // The description field can contain any property
74 // Backward compatibility for is_rtl
75 $description = maybe_unserialize( $language->description );
76 foreach ( $description as $prop => $value ) {
77 'rtl' == $prop ? $this->is_rtl = $value : $this->$prop = $value;
78 }
79
80 $this->description = &$this->locale; // Backward compatibility with Polylang < 1.2
81
82 $this->mo_id = PLL_MO::get_id( $this );
83
84 include PLL_SETTINGS_INC . '/languages.php';
85 $this->w3c = isset( $languages[ $this->locale ]['w3c'] ) ? $languages[ $this->locale ]['w3c'] : str_replace( '_', '-', $this->locale );
86 if ( isset( $languages[ $this->locale ]['facebook'] ) ) {
87 $this->facebook = $languages[ $this->locale ]['facebook'];
88 }
89 }
90 }
91
92 /**
93 * sets flag_url and flag properties
94 *
95 * @since 1.2
96 */
97 public function set_flag() {
98 $flags['flag']['url'] = '';
99
100 // Polylang builtin flags
101 if ( ! empty( $this->flag_code ) && file_exists( POLYLANG_DIR . ( $file = '/flags/' . $this->flag_code . '.png' ) ) ) {
102 $flags['flag']['url'] = esc_url_raw( plugins_url( $file, POLYLANG_FILE ) );
103
104 // If base64 encoded flags are preferred
105 if ( ! defined( 'PLL_ENCODED_FLAGS' ) || PLL_ENCODED_FLAGS ) {
106 $flags['flag']['src'] = 'data:image/png;base64,' . base64_encode( file_get_contents( POLYLANG_DIR . $file ) );
107 } else {
108 $flags['flag']['src'] = esc_url( plugins_url( $file, POLYLANG_FILE ) );
109 }
110 }
111
112 // Custom flags ?
113 if ( file_exists( PLL_LOCAL_DIR . ( $file = '/' . $this->locale . '.png' ) ) || file_exists( PLL_LOCAL_DIR . ( $file = '/' . $this->locale . '.jpg' ) ) ) {
114 $url = content_url( '/polylang' . $file );
115 $flags['custom_flag']['url'] = esc_url_raw( $url );
116 $flags['custom_flag']['src'] = esc_url( $url );
117 }
118
119 /**
120 * Filter the flag title attribute
121 * Defaults to the language name
122 *
123 * @since 0.7
124 *
125 * @param string $title the flag title attribute
126 * @param string $slug the language code
127 * @param string $locale the language locale
128 */
129 $title = apply_filters( 'pll_flag_title', $this->name, $this->slug, $this->locale );
130
131 foreach ( $flags as $key => $flag ) {
132 $this->{$key . '_url'} = empty( $flag['url'] ) ? '' : $flag['url'];
133
134 /**
135 * Filter the html markup of a flag
136 *
137 * @since 1.0.2
138 *
139 * @param string $flag html markup of the flag or empty string
140 * @param string $slug language code
141 */
142 $this->{$key} = apply_filters( 'pll_get_flag', empty( $flag['src'] ) ? '' :
143 sprintf(
144 '<img src="%s" title="%s" alt="%s" />',
145 $flag['src'],
146 esc_attr( $title ),
147 esc_attr( $this->name )
148 ),
149 $this->slug
150 );
151 }
152 }
153
154 /**
155 * Replace flag by custom flag
156 * Takes care of url scheme
157 *
158 * @since 1.7
159 */
160 public function set_custom_flag() {
161 // Overwrite with custom flags on frontend only
162 if ( ! empty( $this->custom_flag ) ) {
163 $this->flag = $this->custom_flag;
164 $this->flag_url = $this->custom_flag_url;
165 unset( $this->custom_flag, $this->custom_flag_url ); // hide this
166 }
167
168 // Set url scheme, also for default flags
169 if ( is_ssl() ) {
170 $this->flag = str_replace( 'http://', 'https://', $this->flag );
171 $this->flag_url = str_replace( 'http://', 'https://', $this->flag_url );
172 } else {
173 $this->flag = str_replace( 'https://', 'http://', $this->flag );
174 $this->flag_url = str_replace( 'https://', 'http://', $this->flag_url );
175 }
176 }
177
178 /**
179 * Updates post and term count
180 *
181 * @since 1.2
182 */
183 public function update_count() {
184 wp_update_term_count( $this->term_taxonomy_id, 'language' ); // posts count
185 wp_update_term_count( $this->tl_term_taxonomy_id, 'term_language' ); // terms count
186 }
187
188 /**
189 * Set home_url and search_url properties
190 *
191 * @since 1.3
192 *
193 * @param string $search_url
194 * @param string $home_url
195 */
196 public function set_home_url( $search_url, $home_url ) {
197 $this->search_url = $search_url;
198 $this->home_url = $home_url;
199 }
200
201 /**
202 * Set home_url scheme
203 * this can't be cached across pages
204 *
205 * @since 1.6.4
206 */
207 public function set_home_url_scheme() {
208 if ( is_ssl() ) {
209 $this->home_url = str_replace( 'http://', 'https://', $this->home_url );
210 $this->search_url = str_replace( 'http://', 'https://', $this->search_url );
211 }
212
213 else {
214 $this->home_url = str_replace( 'https://', 'http://', $this->home_url );
215 $this->search_url = str_replace( 'https://', 'http://', $this->search_url );
216 }
217 }
218
219 /**
220 * Returns the language locale
221 * Converts WP locales to W3C valid locales for display
222 *
223 * @since 1.8
224 *
225 * @param string $filter either 'display' or 'raw', defaults to raw
226 * @return string
227 */
228 public function get_locale( $filter = 'raw' ) {
229 return 'display' === $filter ? $this->w3c : $this->locale;
230 }
231 }
232