|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* TimberSite gives you access to information you need about your site. In Multisite setups, you can get info on other sites in your network. |
|
5
|
|
|
* @example |
|
6
|
|
|
* ```php |
|
7
|
|
|
* $context = Timber::get_context(); |
|
8
|
|
|
* $other_site_id = 2; |
|
9
|
|
|
* $context['other_site'] = new TimberSite($other_site_id); |
|
10
|
|
|
* Timber::render('index.twig', $context); |
|
11
|
|
|
* ``` |
|
12
|
|
|
* ```twig |
|
13
|
|
|
* My site is called {{site.name}}, another site on my network is {{other_site.name}} |
|
14
|
|
|
* ``` |
|
15
|
|
|
* ```html |
|
16
|
|
|
* My site is called Jared's blog, another site on my network is Upstatement.com |
|
17
|
|
|
* ``` |
|
18
|
|
|
*/ |
|
19
|
|
|
class TimberSite extends TimberCore implements TimberCoreInterface { |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
22
|
|
|
* @api |
|
23
|
|
|
* @var string the admin email address set in the WP admin panel |
|
24
|
|
|
*/ |
|
25
|
|
|
public $admin_email; |
|
26
|
|
|
public $blogname; |
|
27
|
|
|
/** |
|
28
|
|
|
* @api |
|
29
|
|
|
* @var string |
|
30
|
|
|
*/ |
|
31
|
|
|
public $charset; |
|
32
|
|
|
|
|
33
|
|
|
/** |
|
34
|
|
|
* @api |
|
35
|
|
|
* @var string |
|
36
|
|
|
*/ |
|
37
|
|
|
public $description; |
|
38
|
|
|
/** |
|
39
|
|
|
* @api |
|
40
|
|
|
* @var int the ID of a site in multisite |
|
41
|
|
|
*/ |
|
42
|
|
|
public $id; |
|
43
|
|
|
/** |
|
44
|
|
|
* @api |
|
45
|
|
|
* @var string the language setting ex: en-US |
|
46
|
|
|
*/ |
|
47
|
|
|
public $language; |
|
48
|
|
|
/** |
|
49
|
|
|
* @api |
|
50
|
|
|
* @var string of language attributes for usage in the <html> tag |
|
51
|
|
|
*/ |
|
52
|
|
|
public $language_attributes; |
|
53
|
|
|
/** |
|
54
|
|
|
* @api |
|
55
|
|
|
* @var bool true if multisite, false if plain ole' WordPress |
|
56
|
|
|
*/ |
|
57
|
|
|
public $multisite; |
|
58
|
|
|
|
|
59
|
|
|
/** |
|
60
|
|
|
* @api |
|
61
|
|
|
* @var string |
|
62
|
|
|
*/ |
|
63
|
|
|
public $name; |
|
64
|
|
|
|
|
65
|
|
|
/** @api |
|
66
|
|
|
* @var string for people who like trackback spam |
|
67
|
|
|
*/ |
|
68
|
|
|
public $pingback_url; |
|
69
|
|
|
public $siteurl; |
|
70
|
|
|
/** |
|
71
|
|
|
* @api |
|
72
|
|
|
* @var [TimberTheme](#TimberTheme) |
|
73
|
|
|
*/ |
|
74
|
|
|
public $theme; |
|
75
|
|
|
/** |
|
76
|
|
|
* @api |
|
77
|
|
|
* @var string |
|
78
|
|
|
*/ |
|
79
|
|
|
public $title; |
|
80
|
|
|
public $url; |
|
81
|
|
|
|
|
82
|
|
|
/** |
|
83
|
|
|
* @api |
|
84
|
|
|
* @var string |
|
85
|
|
|
*/ |
|
86
|
|
|
|
|
87
|
|
|
public $rdf; |
|
88
|
|
|
public $rss; |
|
89
|
|
|
public $rss2; |
|
90
|
|
|
public $atom; |
|
91
|
|
|
|
|
92
|
|
|
/** |
|
93
|
|
|
* Constructs a TimberSite object |
|
94
|
|
|
* @example |
|
95
|
|
|
* ```php |
|
96
|
|
|
* //multisite setup |
|
97
|
|
|
* $site = new TimberSite(1); |
|
98
|
|
|
* $site_two = new TimberSite("My Cool Site"); |
|
99
|
|
|
* //non-multisite |
|
100
|
|
|
* $site = new TimberSite(); |
|
101
|
|
|
* ``` |
|
102
|
|
|
* @param string|int $site_name_or_id |
|
|
|
|
|
|
103
|
|
|
*/ |
|
104
|
|
|
function __construct( $site_name_or_id = null ) { |
|
|
|
|
|
|
105
|
|
|
$this->init(); |
|
106
|
|
|
if ( is_multisite() ) { |
|
107
|
|
|
$this->init_as_multisite( $site_name_or_id ); |
|
108
|
|
|
} else { |
|
109
|
|
|
$this->init_as_singlesite(); |
|
110
|
|
|
} |
|
111
|
|
|
} |
|
112
|
|
|
|
|
113
|
|
|
/** |
|
114
|
|
|
* @internal |
|
115
|
|
|
* @param string|int $site_name_or_id |
|
116
|
|
|
*/ |
|
117
|
|
|
protected function init_as_multisite( $site_name_or_id ) { |
|
118
|
|
|
if ( $site_name_or_id === null ) { |
|
119
|
|
|
//this is necessary for some reason, otherwise returns 1 all the time |
|
120
|
|
|
if ( is_multisite() ) { |
|
121
|
|
|
restore_current_blog(); |
|
122
|
|
|
$site_name_or_id = get_current_blog_id(); |
|
123
|
|
|
} |
|
124
|
|
|
} |
|
125
|
|
|
$info = get_blog_details( $site_name_or_id ); |
|
126
|
|
|
$this->import( $info ); |
|
127
|
|
|
$this->ID = $info->blog_id; |
|
128
|
|
|
$this->id = $this->ID; |
|
129
|
|
|
$this->name = $this->blogname; |
|
130
|
|
|
$this->title = $this->blogname; |
|
131
|
|
|
$this->url = $this->siteurl; |
|
132
|
|
|
$theme_slug = get_blog_option( $info->blog_id, 'stylesheet' ); |
|
133
|
|
|
$this->theme = new TimberTheme( $theme_slug ); |
|
134
|
|
|
$this->description = get_blog_option( $info->blog_id, 'blogdescription' ); |
|
135
|
|
|
$this->admin_email = get_blog_option( $info->blog_id, 'admin_email' ); |
|
136
|
|
|
$this->multisite = true; |
|
137
|
|
|
} |
|
138
|
|
|
|
|
139
|
|
|
/** |
|
140
|
|
|
* Executed for single-blog sites |
|
141
|
|
|
* @internal |
|
142
|
|
|
*/ |
|
143
|
|
|
protected function init_as_singlesite() { |
|
144
|
|
|
$this->admin_email = get_bloginfo( 'admin_email' ); |
|
145
|
|
|
$this->name = get_bloginfo( 'name' ); |
|
146
|
|
|
$this->title = $this->name; |
|
147
|
|
|
$this->description = get_bloginfo( 'description' ); |
|
148
|
|
|
$this->url = get_bloginfo( 'url' ); |
|
149
|
|
|
$this->theme = new TimberTheme(); |
|
150
|
|
|
$this->language_attributes = TimberHelper::function_wrapper( 'language_attributes' ); |
|
|
|
|
|
|
151
|
|
|
$this->multisite = false; |
|
152
|
|
|
} |
|
153
|
|
|
|
|
154
|
|
|
/** |
|
155
|
|
|
* Executed for all types of sites: both multisite and "regular" |
|
156
|
|
|
* @internal |
|
157
|
|
|
*/ |
|
158
|
|
|
protected function init() { |
|
159
|
|
|
$this->rdf = get_bloginfo( 'rdf_url' ); |
|
160
|
|
|
$this->rss = get_bloginfo( 'rss_url' ); |
|
161
|
|
|
$this->rss2 = get_bloginfo( 'rss2_url' ); |
|
162
|
|
|
$this->atom = get_bloginfo( 'atom_url' ); |
|
163
|
|
|
$this->language = get_bloginfo( 'language' ); |
|
164
|
|
|
$this->charset = get_bloginfo( 'charset' ); |
|
165
|
|
|
$this->pingback = get_bloginfo( 'pingback_url' ); |
|
|
|
|
|
|
166
|
|
|
$this->language_attributes = TimberHelper::function_wrapper( 'language_attributes' ); |
|
|
|
|
|
|
167
|
|
|
/* deprecated benath this comment */ |
|
168
|
|
|
$this->pingback_url = get_bloginfo( 'pingback_url' ); |
|
169
|
|
|
} |
|
170
|
|
|
|
|
171
|
|
|
/** |
|
172
|
|
|
* |
|
173
|
|
|
* |
|
174
|
|
|
* @param string $field |
|
175
|
|
|
* @return mixed |
|
176
|
|
|
*/ |
|
177
|
|
|
function __get( $field ) { |
|
|
|
|
|
|
178
|
|
|
if ( !isset( $this->$field ) ) { |
|
179
|
|
|
if ( is_multisite() ) { |
|
180
|
|
|
$this->$field = get_blog_option( $this->ID, $field ); |
|
181
|
|
|
} else { |
|
182
|
|
|
$this->$field = get_option( $field ); |
|
183
|
|
|
} |
|
184
|
|
|
} |
|
185
|
|
|
return $this->$field; |
|
186
|
|
|
} |
|
187
|
|
|
|
|
188
|
|
|
/** |
|
189
|
|
|
* @deprecated 0.21.9 |
|
190
|
|
|
* @internal |
|
191
|
|
|
* @return string |
|
192
|
|
|
*/ |
|
193
|
|
|
function get_link() { |
|
|
|
|
|
|
194
|
|
|
return $this->link(); |
|
195
|
|
|
} |
|
196
|
|
|
|
|
197
|
|
|
/** |
|
198
|
|
|
* @deprecated 0.21.9 |
|
199
|
|
|
* @internal |
|
200
|
|
|
* @return string |
|
201
|
|
|
*/ |
|
202
|
|
|
function get_url() { |
|
|
|
|
|
|
203
|
|
|
return $this->get_link(); |
|
|
|
|
|
|
204
|
|
|
} |
|
205
|
|
|
|
|
206
|
|
|
/** |
|
207
|
|
|
* Returns the link to the site's home. |
|
208
|
|
|
* @example |
|
209
|
|
|
* ```twig |
|
210
|
|
|
* <a href="{{ site.link }}" title="Home"> |
|
211
|
|
|
* <img src="/wp-content/uploads/logo.png" alt="Logo for some stupid thing" /> |
|
212
|
|
|
* </a> |
|
213
|
|
|
* ``` |
|
214
|
|
|
* ```html |
|
215
|
|
|
* <a href="http://example.org" title="Home"> |
|
216
|
|
|
* <img src="/wp-content/uploads/logo.png" alt="Logo for some stupid thing" /> |
|
217
|
|
|
* </a> |
|
218
|
|
|
* ``` |
|
219
|
|
|
* @api |
|
220
|
|
|
* @return string |
|
221
|
|
|
*/ |
|
222
|
|
|
public function link() { |
|
223
|
|
|
return $this->url; |
|
224
|
|
|
} |
|
225
|
|
|
|
|
226
|
|
|
/** |
|
227
|
|
|
* @ignore |
|
228
|
|
|
*/ |
|
229
|
|
|
public function meta( $field ) { |
|
230
|
|
|
return $this->__get( $field ); |
|
231
|
|
|
} |
|
232
|
|
|
|
|
233
|
|
|
/** |
|
234
|
|
|
* |
|
235
|
|
|
* @ignore |
|
236
|
|
|
* @param string $key |
|
237
|
|
|
* @param mixed $value |
|
238
|
|
|
*/ |
|
239
|
|
|
public function update( $key, $value ) { |
|
240
|
|
|
$value = apply_filters( 'timber_site_set_meta', $value, $key, $this->ID, $this ); |
|
241
|
|
|
if ( is_multisite() ) { |
|
242
|
|
|
update_blog_option( $this->ID, $key, $value ); |
|
243
|
|
|
} else { |
|
244
|
|
|
update_option( $key, $value ); |
|
245
|
|
|
} |
|
246
|
|
|
$this->$key = $value; |
|
247
|
|
|
} |
|
248
|
|
|
|
|
249
|
|
|
/** |
|
250
|
|
|
* |
|
251
|
|
|
* @api |
|
252
|
|
|
* @see TimberSite::link |
|
253
|
|
|
* @return string |
|
254
|
|
|
*/ |
|
255
|
|
|
function url() { |
|
|
|
|
|
|
256
|
|
|
return $this->get_link(); |
|
|
|
|
|
|
257
|
|
|
} |
|
258
|
|
|
|
|
259
|
|
|
} |
|
260
|
|
|
|
This check looks for
@paramannotations where the type inferred by our type inference engine differs from the declared type.It makes a suggestion as to what type it considers more descriptive.
Most often this is a case of a parameter that can be null in addition to its declared types.