1 |
85ad3d82
|
Assos Assos
|
<?php
|
2 |
|
|
|
3 |
|
|
/**
|
4 |
|
|
* @file
|
5 |
|
|
* The theme system, which controls the output of Drupal.
|
6 |
|
|
*
|
7 |
|
|
* The theme system allows for nearly all output of the Drupal system to be
|
8 |
|
|
* customized by user themes.
|
9 |
|
|
*/
|
10 |
|
|
|
11 |
|
|
/**
|
12 |
|
|
* @defgroup content_flags Content markers
|
13 |
|
|
* @{
|
14 |
|
|
* Markers used by theme_mark() and node_mark() to designate content.
|
15 |
|
|
* @see theme_mark(), node_mark()
|
16 |
|
|
*/
|
17 |
|
|
|
18 |
|
|
/**
|
19 |
|
|
* Mark content as read.
|
20 |
|
|
*/
|
21 |
|
|
define('MARK_READ', 0);
|
22 |
|
|
|
23 |
|
|
/**
|
24 |
|
|
* Mark content as being new.
|
25 |
|
|
*/
|
26 |
|
|
define('MARK_NEW', 1);
|
27 |
|
|
|
28 |
|
|
/**
|
29 |
|
|
* Mark content as being updated.
|
30 |
|
|
*/
|
31 |
|
|
define('MARK_UPDATED', 2);
|
32 |
|
|
|
33 |
|
|
/**
|
34 |
|
|
* @} End of "Content markers".
|
35 |
|
|
*/
|
36 |
|
|
|
37 |
|
|
/**
|
38 |
|
|
* Determines if a theme is available to use.
|
39 |
|
|
*
|
40 |
|
|
* @param $theme
|
41 |
|
|
* Either the name of a theme or a full theme object.
|
42 |
|
|
*
|
43 |
|
|
* @return
|
44 |
|
|
* Boolean TRUE if the theme is enabled or is the site administration theme;
|
45 |
|
|
* FALSE otherwise.
|
46 |
|
|
*/
|
47 |
|
|
function drupal_theme_access($theme) {
|
48 |
|
|
if (is_object($theme)) {
|
49 |
|
|
return _drupal_theme_access($theme);
|
50 |
|
|
}
|
51 |
|
|
else {
|
52 |
|
|
$themes = list_themes();
|
53 |
|
|
return isset($themes[$theme]) && _drupal_theme_access($themes[$theme]);
|
54 |
|
|
}
|
55 |
|
|
}
|
56 |
|
|
|
57 |
|
|
/**
|
58 |
|
|
* Helper function for determining access to a theme.
|
59 |
|
|
*
|
60 |
|
|
* @see drupal_theme_access()
|
61 |
|
|
*/
|
62 |
|
|
function _drupal_theme_access($theme) {
|
63 |
|
|
$admin_theme = variable_get('admin_theme');
|
64 |
|
|
return !empty($theme->status) || ($admin_theme && $theme->name == $admin_theme);
|
65 |
|
|
}
|
66 |
|
|
|
67 |
|
|
/**
|
68 |
|
|
* Initializes the theme system by loading the theme.
|
69 |
|
|
*/
|
70 |
|
|
function drupal_theme_initialize() {
|
71 |
|
|
global $theme, $user, $theme_key;
|
72 |
|
|
|
73 |
|
|
// If $theme is already set, assume the others are set, too, and do nothing
|
74 |
|
|
if (isset($theme)) {
|
75 |
|
|
return;
|
76 |
|
|
}
|
77 |
|
|
|
78 |
|
|
drupal_bootstrap(DRUPAL_BOOTSTRAP_DATABASE);
|
79 |
|
|
$themes = list_themes();
|
80 |
|
|
|
81 |
|
|
// Only select the user selected theme if it is available in the
|
82 |
|
|
// list of themes that can be accessed.
|
83 |
|
|
$theme = !empty($user->theme) && drupal_theme_access($user->theme) ? $user->theme : variable_get('theme_default', 'bartik');
|
84 |
|
|
|
85 |
|
|
// Allow modules to override the theme. Validation has already been performed
|
86 |
|
|
// inside menu_get_custom_theme(), so we do not need to check it again here.
|
87 |
|
|
$custom_theme = menu_get_custom_theme();
|
88 |
|
|
$theme = !empty($custom_theme) ? $custom_theme : $theme;
|
89 |
|
|
|
90 |
|
|
// Store the identifier for retrieving theme settings with.
|
91 |
|
|
$theme_key = $theme;
|
92 |
|
|
|
93 |
|
|
// Find all our ancestor themes and put them in an array.
|
94 |
|
|
$base_theme = array();
|
95 |
|
|
$ancestor = $theme;
|
96 |
|
|
while ($ancestor && isset($themes[$ancestor]->base_theme)) {
|
97 |
|
|
$ancestor = $themes[$ancestor]->base_theme;
|
98 |
|
|
$base_theme[] = $themes[$ancestor];
|
99 |
|
|
}
|
100 |
|
|
_drupal_theme_initialize($themes[$theme], array_reverse($base_theme));
|
101 |
|
|
|
102 |
|
|
// Themes can have alter functions, so reset the drupal_alter() cache.
|
103 |
|
|
drupal_static_reset('drupal_alter');
|
104 |
|
|
|
105 |
|
|
// Provide the page with information about the theme that's used, so that a
|
106 |
|
|
// later Ajax request can be rendered using the same theme.
|
107 |
|
|
// @see ajax_base_page_theme()
|
108 |
|
|
$setting['ajaxPageState'] = array(
|
109 |
|
|
'theme' => $theme_key,
|
110 |
|
|
'theme_token' => drupal_get_token($theme_key),
|
111 |
|
|
);
|
112 |
|
|
drupal_add_js($setting, 'setting');
|
113 |
|
|
}
|
114 |
|
|
|
115 |
|
|
/**
|
116 |
|
|
* Initializes the theme system given already loaded information.
|
117 |
|
|
*
|
118 |
|
|
* This function is useful to initialize a theme when no database is present.
|
119 |
|
|
*
|
120 |
|
|
* @param $theme
|
121 |
|
|
* An object with the following information:
|
122 |
|
|
* filename
|
123 |
|
|
* The .info file for this theme. The 'path' to
|
124 |
|
|
* the theme will be in this file's directory. (Required)
|
125 |
|
|
* owner
|
126 |
|
|
* The path to the .theme file or the .engine file to load for
|
127 |
|
|
* the theme. (Required)
|
128 |
|
|
* stylesheet
|
129 |
|
|
* The primary stylesheet for the theme. (Optional)
|
130 |
|
|
* engine
|
131 |
|
|
* The name of theme engine to use. (Optional)
|
132 |
|
|
* @param $base_theme
|
133 |
|
|
* An optional array of objects that represent the 'base theme' if the
|
134 |
|
|
* theme is meant to be derivative of another theme. It requires
|
135 |
|
|
* the same information as the $theme object. It should be in
|
136 |
|
|
* 'oldest first' order, meaning the top level of the chain will
|
137 |
|
|
* be first.
|
138 |
|
|
* @param $registry_callback
|
139 |
|
|
* The callback to invoke to set the theme registry.
|
140 |
|
|
*/
|
141 |
|
|
function _drupal_theme_initialize($theme, $base_theme = array(), $registry_callback = '_theme_load_registry') {
|
142 |
|
|
global $theme_info, $base_theme_info, $theme_engine, $theme_path;
|
143 |
|
|
$theme_info = $theme;
|
144 |
|
|
$base_theme_info = $base_theme;
|
145 |
|
|
|
146 |
|
|
$theme_path = dirname($theme->filename);
|
147 |
|
|
|
148 |
|
|
// Prepare stylesheets from this theme as well as all ancestor themes.
|
149 |
|
|
// We work it this way so that we can have child themes override parent
|
150 |
|
|
// theme stylesheets easily.
|
151 |
|
|
$final_stylesheets = array();
|
152 |
|
|
|
153 |
|
|
// Grab stylesheets from base theme
|
154 |
|
|
foreach ($base_theme as $base) {
|
155 |
|
|
if (!empty($base->stylesheets)) {
|
156 |
|
|
foreach ($base->stylesheets as $media => $stylesheets) {
|
157 |
|
|
foreach ($stylesheets as $name => $stylesheet) {
|
158 |
|
|
$final_stylesheets[$media][$name] = $stylesheet;
|
159 |
|
|
}
|
160 |
|
|
}
|
161 |
|
|
}
|
162 |
|
|
}
|
163 |
|
|
|
164 |
|
|
// Add stylesheets used by this theme.
|
165 |
|
|
if (!empty($theme->stylesheets)) {
|
166 |
|
|
foreach ($theme->stylesheets as $media => $stylesheets) {
|
167 |
|
|
foreach ($stylesheets as $name => $stylesheet) {
|
168 |
|
|
$final_stylesheets[$media][$name] = $stylesheet;
|
169 |
|
|
}
|
170 |
|
|
}
|
171 |
|
|
}
|
172 |
|
|
|
173 |
|
|
// And now add the stylesheets properly
|
174 |
|
|
foreach ($final_stylesheets as $media => $stylesheets) {
|
175 |
|
|
foreach ($stylesheets as $stylesheet) {
|
176 |
|
|
drupal_add_css($stylesheet, array('group' => CSS_THEME, 'every_page' => TRUE, 'media' => $media));
|
177 |
|
|
}
|
178 |
|
|
}
|
179 |
|
|
|
180 |
|
|
// Do basically the same as the above for scripts
|
181 |
|
|
$final_scripts = array();
|
182 |
|
|
|
183 |
|
|
// Grab scripts from base theme
|
184 |
|
|
foreach ($base_theme as $base) {
|
185 |
|
|
if (!empty($base->scripts)) {
|
186 |
|
|
foreach ($base->scripts as $name => $script) {
|
187 |
|
|
$final_scripts[$name] = $script;
|
188 |
|
|
}
|
189 |
|
|
}
|
190 |
|
|
}
|
191 |
|
|
|
192 |
|
|
// Add scripts used by this theme.
|
193 |
|
|
if (!empty($theme->scripts)) {
|
194 |
|
|
foreach ($theme->scripts as $name => $script) {
|
195 |
|
|
$final_scripts[$name] = $script;
|
196 |
|
|
}
|
197 |
|
|
}
|
198 |
|
|
|
199 |
|
|
// Add scripts used by this theme.
|
200 |
|
|
foreach ($final_scripts as $script) {
|
201 |
|
|
drupal_add_js($script, array('group' => JS_THEME, 'every_page' => TRUE));
|
202 |
|
|
}
|
203 |
|
|
|
204 |
|
|
$theme_engine = NULL;
|
205 |
|
|
|
206 |
|
|
// Initialize the theme.
|
207 |
|
|
if (isset($theme->engine)) {
|
208 |
|
|
// Include the engine.
|
209 |
|
|
include_once DRUPAL_ROOT . '/' . $theme->owner;
|
210 |
|
|
|
211 |
|
|
$theme_engine = $theme->engine;
|
212 |
|
|
if (function_exists($theme_engine . '_init')) {
|
213 |
|
|
foreach ($base_theme as $base) {
|
214 |
|
|
call_user_func($theme_engine . '_init', $base);
|
215 |
|
|
}
|
216 |
|
|
call_user_func($theme_engine . '_init', $theme);
|
217 |
|
|
}
|
218 |
|
|
}
|
219 |
|
|
else {
|
220 |
|
|
// include non-engine theme files
|
221 |
|
|
foreach ($base_theme as $base) {
|
222 |
|
|
// Include the theme file or the engine.
|
223 |
|
|
if (!empty($base->owner)) {
|
224 |
|
|
include_once DRUPAL_ROOT . '/' . $base->owner;
|
225 |
|
|
}
|
226 |
|
|
}
|
227 |
|
|
// and our theme gets one too.
|
228 |
|
|
if (!empty($theme->owner)) {
|
229 |
|
|
include_once DRUPAL_ROOT . '/' . $theme->owner;
|
230 |
|
|
}
|
231 |
|
|
}
|
232 |
|
|
|
233 |
|
|
if (isset($registry_callback)) {
|
234 |
|
|
_theme_registry_callback($registry_callback, array($theme, $base_theme, $theme_engine));
|
235 |
|
|
}
|
236 |
|
|
}
|
237 |
|
|
|
238 |
|
|
/**
|
239 |
|
|
* Gets the theme registry.
|
240 |
|
|
*
|
241 |
|
|
* @param $complete
|
242 |
|
|
* Optional boolean to indicate whether to return the complete theme registry
|
243 |
|
|
* array or an instance of the ThemeRegistry class. If TRUE, the complete
|
244 |
|
|
* theme registry array will be returned. This is useful if you want to
|
245 |
|
|
* foreach over the whole registry, use array_* functions or inspect it in a
|
246 |
|
|
* debugger. If FALSE, an instance of the ThemeRegistry class will be
|
247 |
|
|
* returned, this provides an ArrayObject which allows it to be accessed
|
248 |
|
|
* with array syntax and isset(), and should be more lightweight
|
249 |
|
|
* than the full registry. Defaults to TRUE.
|
250 |
|
|
*
|
251 |
|
|
* @return
|
252 |
|
|
* The complete theme registry array, or an instance of the ThemeRegistry
|
253 |
|
|
* class.
|
254 |
|
|
*/
|
255 |
|
|
function theme_get_registry($complete = TRUE) {
|
256 |
|
|
// Use the advanced drupal_static() pattern, since this is called very often.
|
257 |
|
|
static $drupal_static_fast;
|
258 |
|
|
if (!isset($drupal_static_fast)) {
|
259 |
|
|
$drupal_static_fast['registry'] = &drupal_static('theme_get_registry');
|
260 |
|
|
}
|
261 |
|
|
$theme_registry = &$drupal_static_fast['registry'];
|
262 |
|
|
|
263 |
|
|
// Initialize the theme, if this is called early in the bootstrap, or after
|
264 |
|
|
// static variables have been reset.
|
265 |
|
|
if (!is_array($theme_registry)) {
|
266 |
|
|
drupal_theme_initialize();
|
267 |
|
|
$theme_registry = array();
|
268 |
|
|
}
|
269 |
|
|
|
270 |
|
|
$key = (int) $complete;
|
271 |
|
|
|
272 |
|
|
if (!isset($theme_registry[$key])) {
|
273 |
|
|
list($callback, $arguments) = _theme_registry_callback();
|
274 |
|
|
if (!$complete) {
|
275 |
|
|
$arguments[] = FALSE;
|
276 |
|
|
}
|
277 |
|
|
$theme_registry[$key] = call_user_func_array($callback, $arguments);
|
278 |
|
|
}
|
279 |
|
|
|
280 |
|
|
return $theme_registry[$key];
|
281 |
|
|
}
|
282 |
|
|
|
283 |
|
|
/**
|
284 |
|
|
* Sets the callback that will be used by theme_get_registry().
|
285 |
|
|
*
|
286 |
|
|
* @param $callback
|
287 |
|
|
* The name of the callback function.
|
288 |
|
|
* @param $arguments
|
289 |
|
|
* The arguments to pass to the function.
|
290 |
|
|
*/
|
291 |
|
|
function _theme_registry_callback($callback = NULL, array $arguments = array()) {
|
292 |
|
|
static $stored;
|
293 |
|
|
if (isset($callback)) {
|
294 |
|
|
$stored = array($callback, $arguments);
|
295 |
|
|
}
|
296 |
|
|
return $stored;
|
297 |
|
|
}
|
298 |
|
|
|
299 |
|
|
/**
|
300 |
|
|
* Gets the theme_registry cache; if it doesn't exist, builds it.
|
301 |
|
|
*
|
302 |
|
|
* @param $theme
|
303 |
|
|
* The loaded $theme object as returned by list_themes().
|
304 |
|
|
* @param $base_theme
|
305 |
|
|
* An array of loaded $theme objects representing the ancestor themes in
|
306 |
|
|
* oldest first order.
|
307 |
|
|
* @param $theme_engine
|
308 |
|
|
* The name of the theme engine.
|
309 |
|
|
* @param $complete
|
310 |
|
|
* Whether to load the complete theme registry or an instance of the
|
311 |
|
|
* ThemeRegistry class.
|
312 |
|
|
*
|
313 |
|
|
* @return
|
314 |
|
|
* The theme registry array, or an instance of the ThemeRegistry class.
|
315 |
|
|
*/
|
316 |
|
|
function _theme_load_registry($theme, $base_theme = NULL, $theme_engine = NULL, $complete = TRUE) {
|
317 |
|
|
if ($complete) {
|
318 |
|
|
// Check the theme registry cache; if it exists, use it.
|
319 |
|
|
$cached = cache_get("theme_registry:$theme->name");
|
320 |
|
|
if (isset($cached->data)) {
|
321 |
|
|
$registry = $cached->data;
|
322 |
|
|
}
|
323 |
|
|
else {
|
324 |
|
|
// If not, build one and cache it.
|
325 |
|
|
$registry = _theme_build_registry($theme, $base_theme, $theme_engine);
|
326 |
|
|
// Only persist this registry if all modules are loaded. This assures a
|
327 |
|
|
// complete set of theme hooks.
|
328 |
|
|
if (module_load_all(NULL)) {
|
329 |
|
|
_theme_save_registry($theme, $registry);
|
330 |
|
|
}
|
331 |
|
|
}
|
332 |
|
|
return $registry;
|
333 |
|
|
}
|
334 |
|
|
else {
|
335 |
|
|
return new ThemeRegistry('theme_registry:runtime:' . $theme->name, 'cache');
|
336 |
|
|
}
|
337 |
|
|
}
|
338 |
|
|
|
339 |
|
|
/**
|
340 |
|
|
* Writes the theme_registry cache into the database.
|
341 |
|
|
*/
|
342 |
|
|
function _theme_save_registry($theme, $registry) {
|
343 |
|
|
cache_set("theme_registry:$theme->name", $registry);
|
344 |
|
|
}
|
345 |
|
|
|
346 |
|
|
/**
|
347 |
|
|
* Forces the system to rebuild the theme registry.
|
348 |
|
|
*
|
349 |
|
|
* This function should be called when modules are added to the system, or when
|
350 |
|
|
* a dynamic system needs to add more theme hooks.
|
351 |
|
|
*/
|
352 |
|
|
function drupal_theme_rebuild() {
|
353 |
|
|
drupal_static_reset('theme_get_registry');
|
354 |
|
|
cache_clear_all('theme_registry', 'cache', TRUE);
|
355 |
|
|
}
|
356 |
|
|
|
357 |
|
|
/**
|
358 |
|
|
* Builds the run-time theme registry.
|
359 |
|
|
*
|
360 |
|
|
* Extends DrupalCacheArray to allow the theme registry to be accessed as a
|
361 |
|
|
* complete registry, while internally caching only the parts of the registry
|
362 |
|
|
* that are actually in use on the site. On cache misses the complete
|
363 |
|
|
* theme registry is loaded and used to update the run-time cache.
|
364 |
|
|
*/
|
365 |
|
|
class ThemeRegistry Extends DrupalCacheArray {
|
366 |
|
|
|
367 |
|
|
/**
|
368 |
|
|
* Whether the partial registry can be persisted to the cache.
|
369 |
|
|
*
|
370 |
|
|
* This is only allowed if all modules and the request method is GET. theme()
|
371 |
|
|
* should be very rarely called on POST requests and this avoids polluting
|
372 |
|
|
* the runtime cache.
|
373 |
|
|
*/
|
374 |
|
|
protected $persistable;
|
375 |
|
|
|
376 |
|
|
/**
|
377 |
|
|
* The complete theme registry array.
|
378 |
|
|
*/
|
379 |
|
|
protected $completeRegistry;
|
380 |
|
|
|
381 |
|
|
function __construct($cid, $bin) {
|
382 |
|
|
$this->cid = $cid;
|
383 |
|
|
$this->bin = $bin;
|
384 |
|
|
$this->persistable = module_load_all(NULL) && $_SERVER['REQUEST_METHOD'] == 'GET';
|
385 |
|
|
|
386 |
|
|
$data = array();
|
387 |
|
|
if ($this->persistable && $cached = cache_get($this->cid, $this->bin)) {
|
388 |
|
|
$data = $cached->data;
|
389 |
|
|
}
|
390 |
|
|
else {
|
391 |
|
|
// If there is no runtime cache stored, fetch the full theme registry,
|
392 |
|
|
// but then initialize each value to NULL. This allows offsetExists()
|
393 |
|
|
// to function correctly on non-registered theme hooks without triggering
|
394 |
|
|
// a call to resolveCacheMiss().
|
395 |
|
|
$data = $this->initializeRegistry();
|
396 |
|
|
if ($this->persistable) {
|
397 |
|
|
$this->set($data);
|
398 |
|
|
}
|
399 |
|
|
}
|
400 |
|
|
$this->storage = $data;
|
401 |
|
|
}
|
402 |
|
|
|
403 |
|
|
/**
|
404 |
|
|
* Initializes the full theme registry.
|
405 |
|
|
*
|
406 |
|
|
* @return
|
407 |
|
|
* An array with the keys of the full theme registry, but the values
|
408 |
|
|
* initialized to NULL.
|
409 |
|
|
*/
|
410 |
|
|
function initializeRegistry() {
|
411 |
|
|
$this->completeRegistry = theme_get_registry();
|
412 |
|
|
|
413 |
|
|
return array_fill_keys(array_keys($this->completeRegistry), NULL);
|
414 |
|
|
}
|
415 |
|
|
|
416 |
|
|
public function offsetExists($offset) {
|
417 |
|
|
// Since the theme registry allows for theme hooks to be requested that
|
418 |
|
|
// are not registered, just check the existence of the key in the registry.
|
419 |
|
|
// Use array_key_exists() here since a NULL value indicates that the theme
|
420 |
|
|
// hook exists but has not yet been requested.
|
421 |
|
|
return array_key_exists($offset, $this->storage);
|
422 |
|
|
}
|
423 |
|
|
|
424 |
|
|
public function offsetGet($offset) {
|
425 |
|
|
// If the offset is set but empty, it is a registered theme hook that has
|
426 |
|
|
// not yet been requested. Offsets that do not exist at all were not
|
427 |
|
|
// registered in hook_theme().
|
428 |
|
|
if (isset($this->storage[$offset])) {
|
429 |
|
|
return $this->storage[$offset];
|
430 |
|
|
}
|
431 |
|
|
elseif (array_key_exists($offset, $this->storage)) {
|
432 |
|
|
return $this->resolveCacheMiss($offset);
|
433 |
|
|
}
|
434 |
|
|
}
|
435 |
|
|
|
436 |
|
|
public function resolveCacheMiss($offset) {
|
437 |
|
|
if (!isset($this->completeRegistry)) {
|
438 |
|
|
$this->completeRegistry = theme_get_registry();
|
439 |
|
|
}
|
440 |
|
|
$this->storage[$offset] = $this->completeRegistry[$offset];
|
441 |
|
|
if ($this->persistable) {
|
442 |
|
|
$this->persist($offset);
|
443 |
|
|
}
|
444 |
|
|
return $this->storage[$offset];
|
445 |
|
|
}
|
446 |
|
|
|
447 |
|
|
public function set($data, $lock = TRUE) {
|
448 |
|
|
$lock_name = $this->cid . ':' . $this->bin;
|
449 |
|
|
if (!$lock || lock_acquire($lock_name)) {
|
450 |
|
|
if ($cached = cache_get($this->cid, $this->bin)) {
|
451 |
|
|
// Use array merge instead of union so that filled in values in $data
|
452 |
|
|
// overwrite empty values in the current cache.
|
453 |
|
|
$data = array_merge($cached->data, $data);
|
454 |
|
|
}
|
455 |
|
|
else {
|
456 |
|
|
$registry = $this->initializeRegistry();
|
457 |
|
|
$data = array_merge($registry, $data);
|
458 |
|
|
}
|
459 |
|
|
cache_set($this->cid, $data, $this->bin);
|
460 |
|
|
if ($lock) {
|
461 |
|
|
lock_release($lock_name);
|
462 |
|
|
}
|
463 |
|
|
}
|
464 |
|
|
}
|
465 |
|
|
}
|
466 |
|
|
|
467 |
|
|
/**
|
468 |
|
|
* Process a single implementation of hook_theme().
|
469 |
|
|
*
|
470 |
|
|
* @param $cache
|
471 |
|
|
* The theme registry that will eventually be cached; It is an associative
|
472 |
|
|
* array keyed by theme hooks, whose values are associative arrays describing
|
473 |
|
|
* the hook:
|
474 |
|
|
* - 'type': The passed-in $type.
|
475 |
|
|
* - 'theme path': The passed-in $path.
|
476 |
|
|
* - 'function': The name of the function generating output for this theme
|
477 |
|
|
* hook. Either defined explicitly in hook_theme() or, if neither 'function'
|
478 |
|
|
* nor 'template' is defined, then the default theme function name is used.
|
479 |
|
|
* The default theme function name is the theme hook prefixed by either
|
480 |
|
|
* 'theme_' for modules or '$name_' for everything else. If 'function' is
|
481 |
|
|
* defined, 'template' is not used.
|
482 |
|
|
* - 'template': The filename of the template generating output for this
|
483 |
|
|
* theme hook. The template is in the directory defined by the 'path' key of
|
484 |
|
|
* hook_theme() or defaults to $path.
|
485 |
|
|
* - 'variables': The variables for this theme hook as defined in
|
486 |
|
|
* hook_theme(). If there is more than one implementation and 'variables' is
|
487 |
|
|
* not specified in a later one, then the previous definition is kept.
|
488 |
|
|
* - 'render element': The renderable element for this theme hook as defined
|
489 |
|
|
* in hook_theme(). If there is more than one implementation and
|
490 |
|
|
* 'render element' is not specified in a later one, then the previous
|
491 |
|
|
* definition is kept.
|
492 |
|
|
* - 'preprocess functions': See theme() for detailed documentation.
|
493 |
|
|
* - 'process functions': See theme() for detailed documentation.
|
494 |
|
|
* @param $name
|
495 |
|
|
* The name of the module, theme engine, base theme engine, theme or base
|
496 |
|
|
* theme implementing hook_theme().
|
497 |
|
|
* @param $type
|
498 |
|
|
* One of 'module', 'theme_engine', 'base_theme_engine', 'theme', or
|
499 |
|
|
* 'base_theme'. Unlike regular hooks that can only be implemented by modules,
|
500 |
|
|
* each of these can implement hook_theme(). _theme_process_registry() is
|
501 |
|
|
* called in aforementioned order and new entries override older ones. For
|
502 |
|
|
* example, if a theme hook is both defined by a module and a theme, then the
|
503 |
|
|
* definition in the theme will be used.
|
504 |
|
|
* @param $theme
|
505 |
|
|
* The loaded $theme object as returned from list_themes().
|
506 |
|
|
* @param $path
|
507 |
|
|
* The directory where $name is. For example, modules/system or
|
508 |
|
|
* themes/bartik.
|
509 |
|
|
*
|
510 |
|
|
* @see theme()
|
511 |
|
|
* @see _theme_build_registry()
|
512 |
|
|
* @see hook_theme()
|
513 |
|
|
* @see list_themes()
|
514 |
|
|
*/
|
515 |
|
|
function _theme_process_registry(&$cache, $name, $type, $theme, $path) {
|
516 |
|
|
$result = array();
|
517 |
|
|
|
518 |
|
|
// Processor functions work in two distinct phases with the process
|
519 |
|
|
// functions always being executed after the preprocess functions.
|
520 |
|
|
$variable_process_phases = array(
|
521 |
|
|
'preprocess functions' => 'preprocess',
|
522 |
|
|
'process functions' => 'process',
|
523 |
|
|
);
|
524 |
|
|
|
525 |
|
|
$hook_defaults = array(
|
526 |
|
|
'variables' => TRUE,
|
527 |
|
|
'render element' => TRUE,
|
528 |
|
|
'pattern' => TRUE,
|
529 |
|
|
'base hook' => TRUE,
|
530 |
|
|
);
|
531 |
|
|
|
532 |
|
|
// Invoke the hook_theme() implementation, process what is returned, and
|
533 |
|
|
// merge it into $cache.
|
534 |
|
|
$function = $name . '_theme';
|
535 |
|
|
if (function_exists($function)) {
|
536 |
|
|
$result = $function($cache, $type, $theme, $path);
|
537 |
|
|
foreach ($result as $hook => $info) {
|
538 |
|
|
// When a theme or engine overrides a module's theme function
|
539 |
|
|
// $result[$hook] will only contain key/value pairs for information being
|
540 |
|
|
// overridden. Pull the rest of the information from what was defined by
|
541 |
|
|
// an earlier hook.
|
542 |
|
|
|
543 |
|
|
// Fill in the type and path of the module, theme, or engine that
|
544 |
|
|
// implements this theme function.
|
545 |
|
|
$result[$hook]['type'] = $type;
|
546 |
|
|
$result[$hook]['theme path'] = $path;
|
547 |
|
|
|
548 |
|
|
// If function and file are omitted, default to standard naming
|
549 |
|
|
// conventions.
|
550 |
|
|
if (!isset($info['template']) && !isset($info['function'])) {
|
551 |
|
|
$result[$hook]['function'] = ($type == 'module' ? 'theme_' : $name . '_') . $hook;
|
552 |
|
|
}
|
553 |
|
|
|
554 |
|
|
if (isset($cache[$hook]['includes'])) {
|
555 |
|
|
$result[$hook]['includes'] = $cache[$hook]['includes'];
|
556 |
|
|
}
|
557 |
|
|
|
558 |
|
|
// If the theme implementation defines a file, then also use the path
|
559 |
|
|
// that it defined. Otherwise use the default path. This allows
|
560 |
|
|
// system.module to declare theme functions on behalf of core .include
|
561 |
|
|
// files.
|
562 |
|
|
if (isset($info['file'])) {
|
563 |
|
|
$include_file = isset($info['path']) ? $info['path'] : $path;
|
564 |
|
|
$include_file .= '/' . $info['file'];
|
565 |
|
|
include_once DRUPAL_ROOT . '/' . $include_file;
|
566 |
|
|
$result[$hook]['includes'][] = $include_file;
|
567 |
|
|
}
|
568 |
|
|
|
569 |
|
|
// If the default keys are not set, use the default values registered
|
570 |
|
|
// by the module.
|
571 |
|
|
if (isset($cache[$hook])) {
|
572 |
|
|
$result[$hook] += array_intersect_key($cache[$hook], $hook_defaults);
|
573 |
|
|
}
|
574 |
|
|
|
575 |
|
|
// The following apply only to theming hooks implemented as templates.
|
576 |
|
|
if (isset($info['template'])) {
|
577 |
|
|
// Prepend the current theming path when none is set.
|
578 |
|
|
if (!isset($info['path'])) {
|
579 |
|
|
$result[$hook]['template'] = $path . '/' . $info['template'];
|
580 |
|
|
}
|
581 |
|
|
}
|
582 |
|
|
|
583 |
|
|
// Allow variable processors for all theming hooks, whether the hook is
|
584 |
|
|
// implemented as a template or as a function.
|
585 |
|
|
foreach ($variable_process_phases as $phase_key => $phase) {
|
586 |
|
|
// Check for existing variable processors. Ensure arrayness.
|
587 |
|
|
if (!isset($info[$phase_key]) || !is_array($info[$phase_key])) {
|
588 |
|
|
$info[$phase_key] = array();
|
589 |
|
|
$prefixes = array();
|
590 |
|
|
if ($type == 'module') {
|
591 |
|
|
// Default variable processor prefix.
|
592 |
|
|
$prefixes[] = 'template';
|
593 |
|
|
// Add all modules so they can intervene with their own variable
|
594 |
|
|
// processors. This allows them to provide variable processors even
|
595 |
|
|
// if they are not the owner of the current hook.
|
596 |
|
|
$prefixes += module_list();
|
597 |
|
|
}
|
598 |
|
|
elseif ($type == 'theme_engine' || $type == 'base_theme_engine') {
|
599 |
|
|
// Theme engines get an extra set that come before the normally
|
600 |
|
|
// named variable processors.
|
601 |
|
|
$prefixes[] = $name . '_engine';
|
602 |
|
|
// The theme engine registers on behalf of the theme using the
|
603 |
|
|
// theme's name.
|
604 |
|
|
$prefixes[] = $theme;
|
605 |
|
|
}
|
606 |
|
|
else {
|
607 |
|
|
// This applies when the theme manually registers their own variable
|
608 |
|
|
// processors.
|
609 |
|
|
$prefixes[] = $name;
|
610 |
|
|
}
|
611 |
|
|
foreach ($prefixes as $prefix) {
|
612 |
|
|
// Only use non-hook-specific variable processors for theming hooks
|
613 |
|
|
// implemented as templates. See theme().
|
614 |
|
|
if (isset($info['template']) && function_exists($prefix . '_' . $phase)) {
|
615 |
|
|
$info[$phase_key][] = $prefix . '_' . $phase;
|
616 |
|
|
}
|
617 |
|
|
if (function_exists($prefix . '_' . $phase . '_' . $hook)) {
|
618 |
|
|
$info[$phase_key][] = $prefix . '_' . $phase . '_' . $hook;
|
619 |
|
|
}
|
620 |
|
|
}
|
621 |
|
|
}
|
622 |
|
|
// Check for the override flag and prevent the cached variable
|
623 |
|
|
// processors from being used. This allows themes or theme engines to
|
624 |
|
|
// remove variable processors set earlier in the registry build.
|
625 |
|
|
if (!empty($info['override ' . $phase_key])) {
|
626 |
|
|
// Flag not needed inside the registry.
|
627 |
|
|
unset($result[$hook]['override ' . $phase_key]);
|
628 |
|
|
}
|
629 |
|
|
elseif (isset($cache[$hook][$phase_key]) && is_array($cache[$hook][$phase_key])) {
|
630 |
|
|
$info[$phase_key] = array_merge($cache[$hook][$phase_key], $info[$phase_key]);
|
631 |
|
|
}
|
632 |
|
|
$result[$hook][$phase_key] = $info[$phase_key];
|
633 |
|
|
}
|
634 |
|
|
}
|
635 |
|
|
|
636 |
|
|
// Merge the newly created theme hooks into the existing cache.
|
637 |
|
|
$cache = $result + $cache;
|
638 |
|
|
}
|
639 |
|
|
|
640 |
|
|
// Let themes have variable processors even if they didn't register a
|
641 |
|
|
// template.
|
642 |
|
|
if ($type == 'theme' || $type == 'base_theme') {
|
643 |
|
|
foreach ($cache as $hook => $info) {
|
644 |
|
|
// Check only if not registered by the theme or engine.
|
645 |
|
|
if (empty($result[$hook])) {
|
646 |
|
|
foreach ($variable_process_phases as $phase_key => $phase) {
|
647 |
|
|
if (!isset($info[$phase_key])) {
|
648 |
|
|
$cache[$hook][$phase_key] = array();
|
649 |
|
|
}
|
650 |
|
|
// Only use non-hook-specific variable processors for theming hooks
|
651 |
|
|
// implemented as templates. See theme().
|
652 |
|
|
if (isset($info['template']) && function_exists($name . '_' . $phase)) {
|
653 |
|
|
$cache[$hook][$phase_key][] = $name . '_' . $phase;
|
654 |
|
|
}
|
655 |
|
|
if (function_exists($name . '_' . $phase . '_' . $hook)) {
|
656 |
|
|
$cache[$hook][$phase_key][] = $name . '_' . $phase . '_' . $hook;
|
657 |
|
|
$cache[$hook]['theme path'] = $path;
|
658 |
|
|
}
|
659 |
|
|
// Ensure uniqueness.
|
660 |
|
|
$cache[$hook][$phase_key] = array_unique($cache[$hook][$phase_key]);
|
661 |
|
|
}
|
662 |
|
|
}
|
663 |
|
|
}
|
664 |
|
|
}
|
665 |
|
|
}
|
666 |
|
|
|
667 |
|
|
/**
|
668 |
|
|
* Builds the theme registry cache.
|
669 |
|
|
*
|
670 |
|
|
* @param $theme
|
671 |
|
|
* The loaded $theme object as returned by list_themes().
|
672 |
|
|
* @param $base_theme
|
673 |
|
|
* An array of loaded $theme objects representing the ancestor themes in
|
674 |
|
|
* oldest first order.
|
675 |
|
|
* @param $theme_engine
|
676 |
|
|
* The name of the theme engine.
|
677 |
|
|
*/
|
678 |
|
|
function _theme_build_registry($theme, $base_theme, $theme_engine) {
|
679 |
|
|
$cache = array();
|
680 |
|
|
// First, process the theme hooks advertised by modules. This will
|
681 |
|
|
// serve as the basic registry. Since the list of enabled modules is the same
|
682 |
|
|
// regardless of the theme used, this is cached in its own entry to save
|
683 |
|
|
// building it for every theme.
|
684 |
|
|
if ($cached = cache_get('theme_registry:build:modules')) {
|
685 |
|
|
$cache = $cached->data;
|
686 |
|
|
}
|
687 |
|
|
else {
|
688 |
|
|
foreach (module_implements('theme') as $module) {
|
689 |
|
|
_theme_process_registry($cache, $module, 'module', $module, drupal_get_path('module', $module));
|
690 |
|
|
}
|
691 |
|
|
// Only cache this registry if all modules are loaded.
|
692 |
|
|
if (module_load_all(NULL)) {
|
693 |
|
|
cache_set('theme_registry:build:modules', $cache);
|
694 |
|
|
}
|
695 |
|
|
}
|
696 |
|
|
|
697 |
|
|
// Process each base theme.
|
698 |
|
|
foreach ($base_theme as $base) {
|
699 |
|
|
// If the base theme uses a theme engine, process its hooks.
|
700 |
|
|
$base_path = dirname($base->filename);
|
701 |
|
|
if ($theme_engine) {
|
702 |
|
|
_theme_process_registry($cache, $theme_engine, 'base_theme_engine', $base->name, $base_path);
|
703 |
|
|
}
|
704 |
|
|
_theme_process_registry($cache, $base->name, 'base_theme', $base->name, $base_path);
|
705 |
|
|
}
|
706 |
|
|
|
707 |
|
|
// And then the same thing, but for the theme.
|
708 |
|
|
if ($theme_engine) {
|
709 |
|
|
_theme_process_registry($cache, $theme_engine, 'theme_engine', $theme->name, dirname($theme->filename));
|
710 |
|
|
}
|
711 |
|
|
|
712 |
|
|
// Finally, hooks provided by the theme itself.
|
713 |
|
|
_theme_process_registry($cache, $theme->name, 'theme', $theme->name, dirname($theme->filename));
|
714 |
|
|
|
715 |
|
|
// Let modules alter the registry.
|
716 |
|
|
drupal_alter('theme_registry', $cache);
|
717 |
|
|
|
718 |
|
|
// Optimize the registry to not have empty arrays for functions.
|
719 |
|
|
foreach ($cache as $hook => $info) {
|
720 |
|
|
foreach (array('preprocess functions', 'process functions') as $phase) {
|
721 |
|
|
if (empty($info[$phase])) {
|
722 |
|
|
unset($cache[$hook][$phase]);
|
723 |
|
|
}
|
724 |
|
|
}
|
725 |
|
|
}
|
726 |
|
|
return $cache;
|
727 |
|
|
}
|
728 |
|
|
|
729 |
|
|
/**
|
730 |
|
|
* Returns a list of all currently available themes.
|
731 |
|
|
*
|
732 |
|
|
* Retrieved from the database, if available and the site is not in maintenance
|
733 |
|
|
* mode; otherwise compiled freshly from the filesystem.
|
734 |
|
|
*
|
735 |
|
|
* @param $refresh
|
736 |
|
|
* Whether to reload the list of themes from the database. Defaults to FALSE.
|
737 |
|
|
*
|
738 |
|
|
* @return
|
739 |
|
|
* An associative array of the currently available themes. The keys are the
|
740 |
|
|
* themes' machine names and the values are objects having the following
|
741 |
|
|
* properties:
|
742 |
|
|
* - filename: The filepath and name of the .info file.
|
743 |
|
|
* - name: The machine name of the theme.
|
744 |
|
|
* - status: 1 for enabled, 0 for disabled themes.
|
745 |
|
|
* - info: The contents of the .info file.
|
746 |
|
|
* - stylesheets: A two dimensional array, using the first key for the
|
747 |
|
|
* media attribute (e.g. 'all'), the second for the name of the file
|
748 |
|
|
* (e.g. style.css). The value is a complete filepath (e.g.
|
749 |
|
|
* themes/bartik/style.css). Not set if no stylesheets are defined in the
|
750 |
|
|
* .info file.
|
751 |
|
|
* - scripts: An associative array of JavaScripts, using the filename as key
|
752 |
|
|
* and the complete filepath as value. Not set if no scripts are defined in
|
753 |
|
|
* the .info file.
|
754 |
|
|
* - prefix: The base theme engine prefix.
|
755 |
|
|
* - engine: The machine name of the theme engine.
|
756 |
|
|
* - base_theme: If this is a sub-theme, the machine name of the base theme
|
757 |
|
|
* defined in the .info file. Otherwise, the element is not set.
|
758 |
|
|
* - base_themes: If this is a sub-theme, an associative array of the
|
759 |
|
|
* base-theme ancestors of this theme, starting with this theme's base
|
760 |
|
|
* theme, then the base theme's own base theme, etc. Each entry has an
|
761 |
|
|
* array key equal to the theme's machine name, and a value equal to the
|
762 |
|
|
* human-readable theme name; if a theme with matching machine name does
|
763 |
|
|
* not exist in the system, the value will instead be NULL (and since the
|
764 |
|
|
* system would not know whether that theme itself has a base theme, that
|
765 |
|
|
* will end the array of base themes). This is not set if the theme is not
|
766 |
|
|
* a sub-theme.
|
767 |
|
|
* - sub_themes: An associative array of themes on the system that are
|
768 |
|
|
* either direct sub-themes (that is, they declare this theme to be
|
769 |
|
|
* their base theme), direct sub-themes of sub-themes, etc. The keys are
|
770 |
|
|
* the themes' machine names, and the values are the themes' human-readable
|
771 |
|
|
* names. This element is not set if there are no themes on the system that
|
772 |
|
|
* declare this theme as their base theme.
|
773 |
|
|
*/
|
774 |
|
|
function list_themes($refresh = FALSE) {
|
775 |
|
|
$list = &drupal_static(__FUNCTION__, array());
|
776 |
|
|
|
777 |
|
|
if ($refresh) {
|
778 |
|
|
$list = array();
|
779 |
|
|
system_list_reset();
|
780 |
|
|
}
|
781 |
|
|
|
782 |
|
|
if (empty($list)) {
|
783 |
|
|
$list = array();
|
784 |
|
|
$themes = array();
|
785 |
|
|
// Extract from the database only when it is available.
|
786 |
|
|
// Also check that the site is not in the middle of an install or update.
|
787 |
|
|
if (!defined('MAINTENANCE_MODE')) {
|
788 |
|
|
try {
|
789 |
|
|
$themes = system_list('theme');
|
790 |
|
|
}
|
791 |
|
|
catch (Exception $e) {
|
792 |
|
|
// If the database is not available, rebuild the theme data.
|
793 |
|
|
$themes = _system_rebuild_theme_data();
|
794 |
|
|
}
|
795 |
|
|
}
|
796 |
|
|
else {
|
797 |
|
|
// Scan the installation when the database should not be read.
|
798 |
|
|
$themes = _system_rebuild_theme_data();
|
799 |
|
|
}
|
800 |
|
|
|
801 |
|
|
foreach ($themes as $theme) {
|
802 |
|
|
foreach ($theme->info['stylesheets'] as $media => $stylesheets) {
|
803 |
|
|
foreach ($stylesheets as $stylesheet => $path) {
|
804 |
|
|
$theme->stylesheets[$media][$stylesheet] = $path;
|
805 |
|
|
}
|
806 |
|
|
}
|
807 |
|
|
foreach ($theme->info['scripts'] as $script => $path) {
|
808 |
|
|
$theme->scripts[$script] = $path;
|
809 |
|
|
}
|
810 |
|
|
if (isset($theme->info['engine'])) {
|
811 |
|
|
$theme->engine = $theme->info['engine'];
|
812 |
|
|
}
|
813 |
|
|
if (isset($theme->info['base theme'])) {
|
814 |
|
|
$theme->base_theme = $theme->info['base theme'];
|
815 |
|
|
}
|
816 |
|
|
// Status is normally retrieved from the database. Add zero values when
|
817 |
|
|
// read from the installation directory to prevent notices.
|
818 |
|
|
if (!isset($theme->status)) {
|
819 |
|
|
$theme->status = 0;
|
820 |
|
|
}
|
821 |
|
|
$list[$theme->name] = $theme;
|
822 |
|
|
}
|
823 |
|
|
}
|
824 |
|
|
|
825 |
|
|
return $list;
|
826 |
|
|
}
|
827 |
|
|
|
828 |
|
|
/**
|
829 |
|
|
* Find all the base themes for the specified theme.
|
830 |
|
|
*
|
831 |
|
|
* Themes can inherit templates and function implementations from earlier themes.
|
832 |
|
|
*
|
833 |
|
|
* @param $themes
|
834 |
|
|
* An array of available themes.
|
835 |
|
|
* @param $key
|
836 |
|
|
* The name of the theme whose base we are looking for.
|
837 |
|
|
* @param $used_keys
|
838 |
|
|
* A recursion parameter preventing endless loops.
|
839 |
|
|
* @return
|
840 |
|
|
* Returns an array of all of the theme's ancestors; the first element's value
|
841 |
|
|
* will be NULL if an error occurred.
|
842 |
|
|
*/
|
843 |
|
|
function drupal_find_base_themes($themes, $key, $used_keys = array()) {
|
844 |
|
|
$base_key = $themes[$key]->info['base theme'];
|
845 |
|
|
// Does the base theme exist?
|
846 |
|
|
if (!isset($themes[$base_key])) {
|
847 |
|
|
return array($base_key => NULL);
|
848 |
|
|
}
|
849 |
|
|
|
850 |
|
|
$current_base_theme = array($base_key => $themes[$base_key]->info['name']);
|
851 |
|
|
|
852 |
|
|
// Is the base theme itself a child of another theme?
|
853 |
|
|
if (isset($themes[$base_key]->info['base theme'])) {
|
854 |
|
|
// Do we already know the base themes of this theme?
|
855 |
|
|
if (isset($themes[$base_key]->base_themes)) {
|
856 |
|
|
return $themes[$base_key]->base_themes + $current_base_theme;
|
857 |
|
|
}
|
858 |
|
|
// Prevent loops.
|
859 |
|
|
if (!empty($used_keys[$base_key])) {
|
860 |
|
|
return array($base_key => NULL);
|
861 |
|
|
}
|
862 |
|
|
$used_keys[$base_key] = TRUE;
|
863 |
|
|
return drupal_find_base_themes($themes, $base_key, $used_keys) + $current_base_theme;
|
864 |
|
|
}
|
865 |
|
|
// If we get here, then this is our parent theme.
|
866 |
|
|
return $current_base_theme;
|
867 |
|
|
}
|
868 |
|
|
|
869 |
|
|
/**
|
870 |
|
|
* Generates themed output.
|
871 |
|
|
*
|
872 |
|
|
* All requests for themed output must go through this function (however,
|
873 |
|
|
* calling the theme() function directly is strongly discouraged - see next
|
874 |
|
|
* paragraph). It examines the request and routes it to the appropriate
|
875 |
|
|
* @link themeable theme function or template @endlink, by checking the theme
|
876 |
|
|
* registry.
|
877 |
|
|
*
|
878 |
|
|
* Avoid calling this function directly. It is preferable to replace direct
|
879 |
|
|
* calls to the theme() function with calls to drupal_render() by passing a
|
880 |
|
|
* render array with a #theme key to drupal_render(), which in turn calls
|
881 |
|
|
* theme().
|
882 |
|
|
*
|
883 |
|
|
* @section sec_theme_hooks Theme Hooks
|
884 |
|
|
* Most commonly, the first argument to this function is the name of the theme
|
885 |
|
|
* hook. For instance, to theme a taxonomy term, the theme hook name is
|
886 |
|
|
* 'taxonomy_term'. Modules register theme hooks within a hook_theme()
|
887 |
|
|
* implementation and provide a default implementation via a function named
|
888 |
|
|
* theme_HOOK() (e.g., theme_taxonomy_term()) or via a template file named
|
889 |
|
|
* according to the value of the 'template' key registered with the theme hook
|
890 |
|
|
* (see hook_theme() for details). Default templates are implemented with the
|
891 |
|
|
* PHPTemplate rendering engine and are named the same as the theme hook, with
|
892 |
|
|
* underscores changed to hyphens, so for the 'taxonomy_term' theme hook, the
|
893 |
|
|
* default template is 'taxonomy-term.tpl.php'.
|
894 |
|
|
*
|
895 |
|
|
* @subsection sub_overriding_theme_hooks Overriding Theme Hooks
|
896 |
|
|
* Themes may also register new theme hooks within a hook_theme()
|
897 |
|
|
* implementation, but it is more common for themes to override default
|
898 |
|
|
* implementations provided by modules than to register entirely new theme
|
899 |
|
|
* hooks. Themes can override a default implementation by implementing a
|
900 |
|
|
* function named THEME_HOOK() (for example, the 'bartik' theme overrides the
|
901 |
|
|
* default implementation of the 'menu_tree' theme hook by implementing a
|
902 |
|
|
* bartik_menu_tree() function), or by adding a template file within its folder
|
903 |
|
|
* structure that follows the template naming structure used by the theme's
|
904 |
|
|
* rendering engine (for example, since the Bartik theme uses the PHPTemplate
|
905 |
|
|
* rendering engine, it overrides the default implementation of the 'page' theme
|
906 |
|
|
* hook by containing a 'page.tpl.php' file within its folder structure).
|
907 |
|
|
*
|
908 |
|
|
* @subsection sub_preprocess_templates Preprocessing for Template Files
|
909 |
|
|
* If the implementation is a template file, several functions are called
|
910 |
|
|
* before the template file is invoked, to modify the $variables array. These
|
911 |
|
|
* fall into the "preprocessing" phase and the "processing" phase, and are
|
912 |
|
|
* executed (if they exist), in the following order (note that in the following
|
913 |
|
|
* list, HOOK indicates the theme hook name, MODULE indicates a module name,
|
914 |
|
|
* THEME indicates a theme name, and ENGINE indicates a theme engine name):
|
915 |
|
|
* - template_preprocess(&$variables, $hook): Creates a default set of
|
916 |
|
|
* variables for all theme hooks with template implementations.
|
917 |
|
|
* - template_preprocess_HOOK(&$variables): Should be implemented by the module
|
918 |
|
|
* that registers the theme hook, to set up default variables.
|
919 |
|
|
* - MODULE_preprocess(&$variables, $hook): hook_preprocess() is invoked on all
|
920 |
|
|
* implementing modules.
|
921 |
|
|
* - MODULE_preprocess_HOOK(&$variables): hook_preprocess_HOOK() is invoked on
|
922 |
|
|
* all implementing modules, so that modules that didn't define the theme
|
923 |
|
|
* hook can alter the variables.
|
924 |
|
|
* - ENGINE_engine_preprocess(&$variables, $hook): Allows the theme engine to
|
925 |
|
|
* set necessary variables for all theme hooks with template implementations.
|
926 |
|
|
* - ENGINE_engine_preprocess_HOOK(&$variables): Allows the theme engine to set
|
927 |
|
|
* necessary variables for the particular theme hook.
|
928 |
|
|
* - THEME_preprocess(&$variables, $hook): Allows the theme to set necessary
|
929 |
|
|
* variables for all theme hooks with template implementations.
|
930 |
|
|
* - THEME_preprocess_HOOK(&$variables): Allows the theme to set necessary
|
931 |
|
|
* variables specific to the particular theme hook.
|
932 |
|
|
* - template_process(&$variables, $hook): Creates an additional set of default
|
933 |
|
|
* variables for all theme hooks with template implementations. The variables
|
934 |
|
|
* created in this function are derived from ones created by
|
935 |
|
|
* template_preprocess(), but potentially altered by the other preprocess
|
936 |
|
|
* functions listed above. For example, any preprocess function can add to or
|
937 |
|
|
* modify the $variables['attributes_array'] variable, and after all of them
|
938 |
|
|
* have finished executing, template_process() flattens it into a
|
939 |
|
|
* $variables['attributes'] string for convenient use by templates.
|
940 |
|
|
* - template_process_HOOK(&$variables): Should be implemented by the module
|
941 |
|
|
* that registers the theme hook, if it needs to perform additional variable
|
942 |
|
|
* processing after all preprocess functions have finished.
|
943 |
|
|
* - MODULE_process(&$variables, $hook): hook_process() is invoked on all
|
944 |
|
|
* implementing modules.
|
945 |
|
|
* - MODULE_process_HOOK(&$variables): hook_process_HOOK() is invoked on
|
946 |
|
|
* on all implementing modules, so that modules that didn't define the theme
|
947 |
|
|
* hook can alter the variables.
|
948 |
|
|
* - ENGINE_engine_process(&$variables, $hook): Allows the theme engine to
|
949 |
|
|
* process variables for all theme hooks with template implementations.
|
950 |
|
|
* - ENGINE_engine_process_HOOK(&$variables): Allows the theme engine to process
|
951 |
|
|
* the variables specific to the theme hook.
|
952 |
|
|
* - THEME_process(&$variables, $hook): Allows the theme to process the
|
953 |
|
|
* variables for all theme hooks with template implementations.
|
954 |
|
|
* - THEME_process_HOOK(&$variables): Allows the theme to process the
|
955 |
|
|
* variables specific to the theme hook.
|
956 |
|
|
*
|
957 |
|
|
* @subsection sub_preprocess_theme_funcs Preprocessing for Theme Functions
|
958 |
|
|
* If the implementation is a function, only the theme-hook-specific preprocess
|
959 |
|
|
* and process functions (the ones ending in _HOOK) are called from the
|
960 |
|
|
* list above. This is because theme hooks with function implementations
|
961 |
|
|
* need to be fast, and calling the non-theme-hook-specific preprocess and
|
962 |
|
|
* process functions for them would incur a noticeable performance penalty.
|
963 |
|
|
*
|
964 |
|
|
* @subsection sub_alternate_suggestions Suggesting Alternate Hooks
|
965 |
|
|
* There are two special variables that these preprocess and process functions
|
966 |
|
|
* can set: 'theme_hook_suggestion' and 'theme_hook_suggestions'. These will be
|
967 |
|
|
* merged together to form a list of 'suggested' alternate theme hooks to use,
|
968 |
|
|
* in reverse order of priority. theme_hook_suggestion will always be a higher
|
969 |
|
|
* priority than items in theme_hook_suggestions. theme() will use the
|
970 |
|
|
* highest priority implementation that exists. If none exists, theme() will
|
971 |
|
|
* use the implementation for the theme hook it was called with. These
|
972 |
|
|
* suggestions are similar to and are used for similar reasons as calling
|
973 |
|
|
* theme() with an array as the $hook parameter (see below). The difference
|
974 |
|
|
* is whether the suggestions are determined by the code that calls theme() or
|
975 |
|
|
* by a preprocess or process function.
|
976 |
|
|
*
|
977 |
|
|
* @param $hook
|
978 |
|
|
* The name of the theme hook to call. If the name contains a
|
979 |
|
|
* double-underscore ('__') and there isn't an implementation for the full
|
980 |
|
|
* name, the part before the '__' is checked. This allows a fallback to a
|
981 |
|
|
* more generic implementation. For example, if theme('links__node', ...) is
|
982 |
|
|
* called, but there is no implementation of that theme hook, then the
|
983 |
|
|
* 'links' implementation is used. This process is iterative, so if
|
984 |
|
|
* theme('links__contextual__node', ...) is called, theme() checks for the
|
985 |
|
|
* following implementations, and uses the first one that exists:
|
986 |
|
|
* - links__contextual__node
|
987 |
|
|
* - links__contextual
|
988 |
|
|
* - links
|
989 |
|
|
* This allows themes to create specific theme implementations for named
|
990 |
|
|
* objects and contexts of otherwise generic theme hooks. The $hook parameter
|
991 |
|
|
* may also be an array, in which case the first theme hook that has an
|
992 |
|
|
* implementation is used. This allows for the code that calls theme() to
|
993 |
|
|
* explicitly specify the fallback order in a situation where using the '__'
|
994 |
|
|
* convention is not desired or is insufficient.
|
995 |
|
|
* @param $variables
|
996 |
|
|
* An associative array of variables to merge with defaults from the theme
|
997 |
|
|
* registry, pass to preprocess and process functions for modification, and
|
998 |
|
|
* finally, pass to the function or template implementing the theme hook.
|
999 |
|
|
* Alternatively, this can be a renderable array, in which case, its
|
1000 |
|
|
* properties are mapped to variables expected by the theme hook
|
1001 |
|
|
* implementations.
|
1002 |
|
|
*
|
1003 |
|
|
* @return
|
1004 |
|
|
* An HTML string representing the themed output.
|
1005 |
|
|
*
|
1006 |
|
|
* @see drupal_render()
|
1007 |
|
|
* @see themeable
|
1008 |
|
|
* @see hook_theme()
|
1009 |
|
|
* @see template_preprocess()
|
1010 |
|
|
* @see template_process()
|
1011 |
|
|
*/
|
1012 |
|
|
function theme($hook, $variables = array()) {
|
1013 |
|
|
// If called before all modules are loaded, we do not necessarily have a full
|
1014 |
|
|
// theme registry to work with, and therefore cannot process the theme
|
1015 |
|
|
// request properly. See also _theme_load_registry().
|
1016 |
|
|
if (!module_load_all(NULL) && !defined('MAINTENANCE_MODE')) {
|
1017 |
|
|
throw new Exception(t('theme() may not be called until all modules are loaded.'));
|
1018 |
|
|
}
|
1019 |
|
|
|
1020 |
|
|
$hooks = theme_get_registry(FALSE);
|
1021 |
|
|
|
1022 |
|
|
// If an array of hook candidates were passed, use the first one that has an
|
1023 |
|
|
// implementation.
|
1024 |
|
|
if (is_array($hook)) {
|
1025 |
|
|
foreach ($hook as $candidate) {
|
1026 |
|
|
if (isset($hooks[$candidate])) {
|
1027 |
|
|
break;
|
1028 |
|
|
}
|
1029 |
|
|
}
|
1030 |
|
|
$hook = $candidate;
|
1031 |
|
|
}
|
1032 |
|
|
|
1033 |
|
|
// If there's no implementation, check for more generic fallbacks. If there's
|
1034 |
|
|
// still no implementation, log an error and return an empty string.
|
1035 |
|
|
if (!isset($hooks[$hook])) {
|
1036 |
|
|
// Iteratively strip everything after the last '__' delimiter, until an
|
1037 |
|
|
// implementation is found.
|
1038 |
|
|
while ($pos = strrpos($hook, '__')) {
|
1039 |
|
|
$hook = substr($hook, 0, $pos);
|
1040 |
|
|
if (isset($hooks[$hook])) {
|
1041 |
|
|
break;
|
1042 |
|
|
}
|
1043 |
|
|
}
|
1044 |
|
|
if (!isset($hooks[$hook])) {
|
1045 |
|
|
// Only log a message when not trying theme suggestions ($hook being an
|
1046 |
|
|
// array).
|
1047 |
|
|
if (!isset($candidate)) {
|
1048 |
|
|
watchdog('theme', 'Theme hook %hook not found.', array('%hook' => $hook), WATCHDOG_WARNING);
|
1049 |
|
|
}
|
1050 |
|
|
return '';
|
1051 |
|
|
}
|
1052 |
|
|
}
|
1053 |
|
|
|
1054 |
|
|
$info = $hooks[$hook];
|
1055 |
|
|
global $theme_path;
|
1056 |
|
|
$temp = $theme_path;
|
1057 |
|
|
// point path_to_theme() to the currently used theme path:
|
1058 |
|
|
$theme_path = $info['theme path'];
|
1059 |
|
|
|
1060 |
|
|
// Include a file if the theme function or variable processor is held
|
1061 |
|
|
// elsewhere.
|
1062 |
|
|
if (!empty($info['includes'])) {
|
1063 |
|
|
foreach ($info['includes'] as $include_file) {
|
1064 |
|
|
include_once DRUPAL_ROOT . '/' . $include_file;
|
1065 |
|
|
}
|
1066 |
|
|
}
|
1067 |
|
|
|
1068 |
|
|
// If a renderable array is passed as $variables, then set $variables to
|
1069 |
|
|
// the arguments expected by the theme function.
|
1070 |
|
|
if (isset($variables['#theme']) || isset($variables['#theme_wrappers'])) {
|
1071 |
|
|
$element = $variables;
|
1072 |
|
|
$variables = array();
|
1073 |
|
|
if (isset($info['variables'])) {
|
1074 |
|
|
foreach (array_keys($info['variables']) as $name) {
|
1075 |
|
|
if (isset($element["#$name"])) {
|
1076 |
|
|
$variables[$name] = $element["#$name"];
|
1077 |
|
|
}
|
1078 |
|
|
}
|
1079 |
|
|
}
|
1080 |
|
|
else {
|
1081 |
|
|
$variables[$info['render element']] = $element;
|
1082 |
|
|
}
|
1083 |
|
|
}
|
1084 |
|
|
|
1085 |
|
|
// Merge in argument defaults.
|
1086 |
|
|
if (!empty($info['variables'])) {
|
1087 |
|
|
$variables += $info['variables'];
|
1088 |
|
|
}
|
1089 |
|
|
elseif (!empty($info['render element'])) {
|
1090 |
|
|
$variables += array($info['render element'] => array());
|
1091 |
|
|
}
|
1092 |
|
|
|
1093 |
|
|
// Invoke the variable processors, if any. The processors may specify
|
1094 |
|
|
// alternate suggestions for which hook's template/function to use. If the
|
1095 |
|
|
// hook is a suggestion of a base hook, invoke the variable processors of
|
1096 |
|
|
// the base hook, but retain the suggestion as a high priority suggestion to
|
1097 |
|
|
// be used unless overridden by a variable processor function.
|
1098 |
|
|
if (isset($info['base hook'])) {
|
1099 |
|
|
$base_hook = $info['base hook'];
|
1100 |
|
|
$base_hook_info = $hooks[$base_hook];
|
1101 |
|
|
// Include files required by the base hook, since its variable processors
|
1102 |
|
|
// might reside there.
|
1103 |
|
|
if (!empty($base_hook_info['includes'])) {
|
1104 |
|
|
foreach ($base_hook_info['includes'] as $include_file) {
|
1105 |
|
|
include_once DRUPAL_ROOT . '/' . $include_file;
|
1106 |
|
|
}
|
1107 |
|
|
}
|
1108 |
|
|
if (isset($base_hook_info['preprocess functions']) || isset($base_hook_info['process functions'])) {
|
1109 |
|
|
$variables['theme_hook_suggestion'] = $hook;
|
1110 |
|
|
$hook = $base_hook;
|
1111 |
|
|
$info = $base_hook_info;
|
1112 |
|
|
}
|
1113 |
|
|
}
|
1114 |
|
|
if (isset($info['preprocess functions']) || isset($info['process functions'])) {
|
1115 |
|
|
$variables['theme_hook_suggestions'] = array();
|
1116 |
|
|
foreach (array('preprocess functions', 'process functions') as $phase) {
|
1117 |
|
|
if (!empty($info[$phase])) {
|
1118 |
|
|
foreach ($info[$phase] as $processor_function) {
|
1119 |
|
|
if (function_exists($processor_function)) {
|
1120 |
|
|
// We don't want a poorly behaved process function changing $hook.
|
1121 |
|
|
$hook_clone = $hook;
|
1122 |
|
|
$processor_function($variables, $hook_clone);
|
1123 |
|
|
}
|
1124 |
|
|
}
|
1125 |
|
|
}
|
1126 |
|
|
}
|
1127 |
|
|
// If the preprocess/process functions specified hook suggestions, and the
|
1128 |
|
|
// suggestion exists in the theme registry, use it instead of the hook that
|
1129 |
|
|
// theme() was called with. This allows the preprocess/process step to
|
1130 |
|
|
// route to a more specific theme hook. For example, a function may call
|
1131 |
|
|
// theme('node', ...), but a preprocess function can add 'node__article' as
|
1132 |
|
|
// a suggestion, enabling a theme to have an alternate template file for
|
1133 |
|
|
// article nodes. Suggestions are checked in the following order:
|
1134 |
|
|
// - The 'theme_hook_suggestion' variable is checked first. It overrides
|
1135 |
|
|
// all others.
|
1136 |
|
|
// - The 'theme_hook_suggestions' variable is checked in FILO order, so the
|
1137 |
|
|
// last suggestion added to the array takes precedence over suggestions
|
1138 |
|
|
// added earlier.
|
1139 |
|
|
$suggestions = array();
|
1140 |
|
|
if (!empty($variables['theme_hook_suggestions'])) {
|
1141 |
|
|
$suggestions = $variables['theme_hook_suggestions'];
|
1142 |
|
|
}
|
1143 |
|
|
if (!empty($variables['theme_hook_suggestion'])) {
|
1144 |
|
|
$suggestions[] = $variables['theme_hook_suggestion'];
|
1145 |
|
|
}
|
1146 |
|
|
foreach (array_reverse($suggestions) as $suggestion) {
|
1147 |
|
|
if (isset($hooks[$suggestion])) {
|
1148 |
|
|
$info = $hooks[$suggestion];
|
1149 |
|
|
break;
|
1150 |
|
|
}
|
1151 |
|
|
}
|
1152 |
|
|
}
|
1153 |
|
|
|
1154 |
|
|
// Generate the output using either a function or a template.
|
1155 |
|
|
$output = '';
|
1156 |
|
|
if (isset($info['function'])) {
|
1157 |
|
|
if (function_exists($info['function'])) {
|
1158 |
|
|
$output = $info['function']($variables);
|
1159 |
|
|
}
|
1160 |
|
|
}
|
1161 |
|
|
else {
|
1162 |
|
|
// Default render function and extension.
|
1163 |
|
|
$render_function = 'theme_render_template';
|
1164 |
|
|
$extension = '.tpl.php';
|
1165 |
|
|
|
1166 |
|
|
// The theme engine may use a different extension and a different renderer.
|
1167 |
|
|
global $theme_engine;
|
1168 |
|
|
if (isset($theme_engine)) {
|
1169 |
|
|
if ($info['type'] != 'module') {
|
1170 |
|
|
if (function_exists($theme_engine . '_render_template')) {
|
1171 |
|
|
$render_function = $theme_engine . '_render_template';
|
1172 |
|
|
}
|
1173 |
|
|
$extension_function = $theme_engine . '_extension';
|
1174 |
|
|
if (function_exists($extension_function)) {
|
1175 |
|
|
$extension = $extension_function();
|
1176 |
|
|
}
|
1177 |
|
|
}
|
1178 |
|
|
}
|
1179 |
|
|
|
1180 |
|
|
// In some cases, a template implementation may not have had
|
1181 |
|
|
// template_preprocess() run (for example, if the default implementation is
|
1182 |
|
|
// a function, but a template overrides that default implementation). In
|
1183 |
|
|
// these cases, a template should still be able to expect to have access to
|
1184 |
|
|
// the variables provided by template_preprocess(), so we add them here if
|
1185 |
|
|
// they don't already exist. We don't want to run template_preprocess()
|
1186 |
|
|
// twice (it would be inefficient and mess up zebra striping), so we use the
|
1187 |
|
|
// 'directory' variable to determine if it has already run, which while not
|
1188 |
|
|
// completely intuitive, is reasonably safe, and allows us to save on the
|
1189 |
|
|
// overhead of adding some new variable to track that.
|
1190 |
|
|
if (!isset($variables['directory'])) {
|
1191 |
|
|
$default_template_variables = array();
|
1192 |
|
|
template_preprocess($default_template_variables, $hook);
|
1193 |
|
|
$variables += $default_template_variables;
|
1194 |
|
|
}
|
1195 |
|
|
|
1196 |
|
|
// Render the output using the template file.
|
1197 |
|
|
$template_file = $info['template'] . $extension;
|
1198 |
|
|
if (isset($info['path'])) {
|
1199 |
|
|
$template_file = $info['path'] . '/' . $template_file;
|
1200 |
|
|
}
|
1201 |
|
|
$output = $render_function($template_file, $variables);
|
1202 |
|
|
}
|
1203 |
|
|
|
1204 |
|
|
// restore path_to_theme()
|
1205 |
|
|
$theme_path = $temp;
|
1206 |
|
|
return $output;
|
1207 |
|
|
}
|
1208 |
|
|
|
1209 |
|
|
/**
|
1210 |
|
|
* Returns the path to the current themed element.
|
1211 |
|
|
*
|
1212 |
|
|
* It can point to the active theme or the module handling a themed
|
1213 |
|
|
* implementation. For example, when invoked within the scope of a theming call
|
1214 |
|
|
* it will depend on where the theming function is handled. If implemented from
|
1215 |
|
|
* a module, it will point to the module. If implemented from the active theme,
|
1216 |
|
|
* it will point to the active theme. When called outside the scope of a
|
1217 |
|
|
* theming call, it will always point to the active theme.
|
1218 |
|
|
*/
|
1219 |
|
|
function path_to_theme() {
|
1220 |
|
|
global $theme_path;
|
1221 |
|
|
|
1222 |
|
|
if (!isset($theme_path)) {
|
1223 |
|
|
drupal_theme_initialize();
|
1224 |
|
|
}
|
1225 |
|
|
|
1226 |
|
|
return $theme_path;
|
1227 |
|
|
}
|
1228 |
|
|
|
1229 |
|
|
/**
|
1230 |
|
|
* Allows themes and/or theme engines to discover overridden theme functions.
|
1231 |
|
|
*
|
1232 |
|
|
* @param $cache
|
1233 |
|
|
* The existing cache of theme hooks to test against.
|
1234 |
|
|
* @param $prefixes
|
1235 |
|
|
* An array of prefixes to test, in reverse order of importance.
|
1236 |
|
|
*
|
1237 |
|
|
* @return $implementations
|
1238 |
|
|
* The functions found, suitable for returning from hook_theme;
|
1239 |
|
|
*/
|
1240 |
|
|
function drupal_find_theme_functions($cache, $prefixes) {
|
1241 |
|
|
$implementations = array();
|
1242 |
|
|
$functions = get_defined_functions();
|
1243 |
|
|
|
1244 |
|
|
foreach ($cache as $hook => $info) {
|
1245 |
|
|
foreach ($prefixes as $prefix) {
|
1246 |
|
|
// Find theme functions that implement possible "suggestion" variants of
|
1247 |
|
|
// registered theme hooks and add those as new registered theme hooks.
|
1248 |
|
|
// The 'pattern' key defines a common prefix that all suggestions must
|
1249 |
|
|
// start with. The default is the name of the hook followed by '__'. An
|
1250 |
|
|
// 'base hook' key is added to each entry made for a found suggestion,
|
1251 |
|
|
// so that common functionality can be implemented for all suggestions of
|
1252 |
|
|
// the same base hook. To keep things simple, deep hierarchy of
|
1253 |
|
|
// suggestions is not supported: each suggestion's 'base hook' key
|
1254 |
|
|
// refers to a base hook, not to another suggestion, and all suggestions
|
1255 |
|
|
// are found using the base hook's pattern, not a pattern from an
|
1256 |
|
|
// intermediary suggestion.
|
1257 |
|
|
$pattern = isset($info['pattern']) ? $info['pattern'] : ($hook . '__');
|
1258 |
|
|
if (!isset($info['base hook']) && !empty($pattern)) {
|
1259 |
|
|
$matches = preg_grep('/^' . $prefix . '_' . $pattern . '/', $functions['user']);
|
1260 |
|
|
if ($matches) {
|
1261 |
|
|
foreach ($matches as $match) {
|
1262 |
|
|
$new_hook = substr($match, strlen($prefix) + 1);
|
1263 |
|
|
$arg_name = isset($info['variables']) ? 'variables' : 'render element';
|
1264 |
|
|
$implementations[$new_hook] = array(
|
1265 |
|
|
'function' => $match,
|
1266 |
|
|
$arg_name => $info[$arg_name],
|
1267 |
|
|
'base hook' => $hook,
|
1268 |
|
|
);
|
1269 |
|
|
}
|
1270 |
|
|
}
|
1271 |
|
|
}
|
1272 |
|
|
// Find theme functions that implement registered theme hooks and include
|
1273 |
|
|
// that in what is returned so that the registry knows that the theme has
|
1274 |
|
|
// this implementation.
|
1275 |
|
|
if (function_exists($prefix . '_' . $hook)) {
|
1276 |
|
|
$implementations[$hook] = array(
|
1277 |
|
|
'function' => $prefix . '_' . $hook,
|
1278 |
|
|
);
|
1279 |
|
|
}
|
1280 |
|
|
}
|
1281 |
|
|
}
|
1282 |
|
|
|
1283 |
|
|
return $implementations;
|
1284 |
|
|
}
|
1285 |
|
|
|
1286 |
|
|
/**
|
1287 |
|
|
* Allows themes and/or theme engines to easily discover overridden templates.
|
1288 |
|
|
*
|
1289 |
|
|
* @param $cache
|
1290 |
|
|
* The existing cache of theme hooks to test against.
|
1291 |
|
|
* @param $extension
|
1292 |
|
|
* The extension that these templates will have.
|
1293 |
|
|
* @param $path
|
1294 |
|
|
* The path to search.
|
1295 |
|
|
*/
|
1296 |
|
|
function drupal_find_theme_templates($cache, $extension, $path) {
|
1297 |
|
|
$implementations = array();
|
1298 |
|
|
|
1299 |
|
|
// Collect paths to all sub-themes grouped by base themes. These will be
|
1300 |
|
|
// used for filtering. This allows base themes to have sub-themes in its
|
1301 |
|
|
// folder hierarchy without affecting the base themes template discovery.
|
1302 |
|
|
$theme_paths = array();
|
1303 |
|
|
foreach (list_themes() as $theme_info) {
|
1304 |
|
|
if (!empty($theme_info->base_theme)) {
|
1305 |
|
|
$theme_paths[$theme_info->base_theme][$theme_info->name] = dirname($theme_info->filename);
|
1306 |
|
|
}
|
1307 |
|
|
}
|
1308 |
|
|
foreach ($theme_paths as $basetheme => $subthemes) {
|
1309 |
|
|
foreach ($subthemes as $subtheme => $subtheme_path) {
|
1310 |
|
|
if (isset($theme_paths[$subtheme])) {
|
1311 |
|
|
$theme_paths[$basetheme] = array_merge($theme_paths[$basetheme], $theme_paths[$subtheme]);
|
1312 |
|
|
}
|
1313 |
|
|
}
|
1314 |
|
|
}
|
1315 |
|
|
global $theme;
|
1316 |
|
|
$subtheme_paths = isset($theme_paths[$theme]) ? $theme_paths[$theme] : array();
|
1317 |
|
|
|
1318 |
|
|
// Escape the periods in the extension.
|
1319 |
|
|
$regex = '/' . str_replace('.', '\.', $extension) . '$/';
|
1320 |
|
|
// Get a listing of all template files in the path to search.
|
1321 |
|
|
$files = drupal_system_listing($regex, $path, 'name', 0);
|
1322 |
|
|
|
1323 |
|
|
// Find templates that implement registered theme hooks and include that in
|
1324 |
|
|
// what is returned so that the registry knows that the theme has this
|
1325 |
|
|
// implementation.
|
1326 |
|
|
foreach ($files as $template => $file) {
|
1327 |
|
|
// Ignore sub-theme templates for the current theme.
|
1328 |
|
|
if (strpos($file->uri, str_replace($subtheme_paths, '', $file->uri)) !== 0) {
|
1329 |
|
|
continue;
|
1330 |
|
|
}
|
1331 |
|
|
// Chop off the remaining extensions if there are any. $template already
|
1332 |
|
|
// has the rightmost extension removed, but there might still be more,
|
1333 |
|
|
// such as with .tpl.php, which still has .tpl in $template at this point.
|
1334 |
|
|
if (($pos = strpos($template, '.')) !== FALSE) {
|
1335 |
|
|
$template = substr($template, 0, $pos);
|
1336 |
|
|
}
|
1337 |
|
|
// Transform - in filenames to _ to match function naming scheme
|
1338 |
|
|
// for the purposes of searching.
|
1339 |
|
|
$hook = strtr($template, '-', '_');
|
1340 |
|
|
if (isset($cache[$hook])) {
|
1341 |
|
|
$implementations[$hook] = array(
|
1342 |
|
|
'template' => $template,
|
1343 |
|
|
'path' => dirname($file->uri),
|
1344 |
|
|
);
|
1345 |
|
|
}
|
1346 |
|
|
}
|
1347 |
|
|
|
1348 |
|
|
// Find templates that implement possible "suggestion" variants of registered
|
1349 |
|
|
// theme hooks and add those as new registered theme hooks. See
|
1350 |
|
|
// drupal_find_theme_functions() for more information about suggestions and
|
1351 |
|
|
// the use of 'pattern' and 'base hook'.
|
1352 |
|
|
$patterns = array_keys($files);
|
1353 |
|
|
foreach ($cache as $hook => $info) {
|
1354 |
|
|
$pattern = isset($info['pattern']) ? $info['pattern'] : ($hook . '__');
|
1355 |
|
|
if (!isset($info['base hook']) && !empty($pattern)) {
|
1356 |
|
|
// Transform _ in pattern to - to match file naming scheme
|
1357 |
|
|
// for the purposes of searching.
|
1358 |
|
|
$pattern = strtr($pattern, '_', '-');
|
1359 |
|
|
|
1360 |
|
|
$matches = preg_grep('/^' . $pattern . '/', $patterns);
|
1361 |
|
|
if ($matches) {
|
1362 |
|
|
foreach ($matches as $match) {
|
1363 |
|
|
$file = substr($match, 0, strpos($match, '.'));
|
1364 |
|
|
// Put the underscores back in for the hook name and register this
|
1365 |
|
|
// pattern.
|
1366 |
|
|
$arg_name = isset($info['variables']) ? 'variables' : 'render element';
|
1367 |
|
|
$implementations[strtr($file, '-', '_')] = array(
|
1368 |
|
|
'template' => $file,
|
1369 |
|
|
'path' => dirname($files[$match]->uri),
|
1370 |
|
|
$arg_name => $info[$arg_name],
|
1371 |
|
|
'base hook' => $hook,
|
1372 |
|
|
);
|
1373 |
|
|
}
|
1374 |
|
|
}
|
1375 |
|
|
}
|
1376 |
|
|
}
|
1377 |
|
|
return $implementations;
|
1378 |
|
|
}
|
1379 |
|
|
|
1380 |
|
|
/**
|
1381 |
|
|
* Retrieves a setting for the current theme or for a given theme.
|
1382 |
|
|
*
|
1383 |
|
|
* The final setting is obtained from the last value found in the following
|
1384 |
|
|
* sources:
|
1385 |
|
|
* - the default global settings specified in this function
|
1386 |
|
|
* - the default theme-specific settings defined in any base theme's .info file
|
1387 |
|
|
* - the default theme-specific settings defined in the theme's .info file
|
1388 |
|
|
* - the saved values from the global theme settings form
|
1389 |
|
|
* - the saved values from the theme's settings form
|
1390 |
|
|
* To only retrieve the default global theme setting, an empty string should be
|
1391 |
|
|
* given for $theme.
|
1392 |
|
|
*
|
1393 |
|
|
* @param $setting_name
|
1394 |
|
|
* The name of the setting to be retrieved.
|
1395 |
|
|
* @param $theme
|
1396 |
|
|
* The name of a given theme; defaults to the current theme.
|
1397 |
|
|
*
|
1398 |
|
|
* @return
|
1399 |
|
|
* The value of the requested setting, NULL if the setting does not exist.
|
1400 |
|
|
*/
|
1401 |
|
|
function theme_get_setting($setting_name, $theme = NULL) {
|
1402 |
|
|
$cache = &drupal_static(__FUNCTION__, array());
|
1403 |
|
|
|
1404 |
|
|
// If no key is given, use the current theme if we can determine it.
|
1405 |
|
|
if (!isset($theme)) {
|
1406 |
|
|
$theme = !empty($GLOBALS['theme_key']) ? $GLOBALS['theme_key'] : '';
|
1407 |
|
|
}
|
1408 |
|
|
|
1409 |
|
|
if (empty($cache[$theme])) {
|
1410 |
|
|
// Set the default values for each global setting.
|
1411 |
|
|
// To add new global settings, add their default values below, and then
|
1412 |
|
|
// add form elements to system_theme_settings() in system.admin.inc.
|
1413 |
|
|
$cache[$theme] = array(
|
1414 |
|
|
'default_logo' => 1,
|
1415 |
|
|
'logo_path' => '',
|
1416 |
|
|
'default_favicon' => 1,
|
1417 |
|
|
'favicon_path' => '',
|
1418 |
|
|
// Use the IANA-registered MIME type for ICO files as default.
|
1419 |
|
|
'favicon_mimetype' => 'image/vnd.microsoft.icon',
|
1420 |
|
|
);
|
1421 |
|
|
// Turn on all default features.
|
1422 |
|
|
$features = _system_default_theme_features();
|
1423 |
|
|
foreach ($features as $feature) {
|
1424 |
|
|
$cache[$theme]['toggle_' . $feature] = 1;
|
1425 |
|
|
}
|
1426 |
|
|
|
1427 |
|
|
// Get the values for the theme-specific settings from the .info files of
|
1428 |
|
|
// the theme and all its base themes.
|
1429 |
|
|
if ($theme) {
|
1430 |
|
|
$themes = list_themes();
|
1431 |
|
|
$theme_object = $themes[$theme];
|
1432 |
|
|
|
1433 |
|
|
// Create a list which includes the current theme and all its base themes.
|
1434 |
|
|
if (isset($theme_object->base_themes)) {
|
1435 |
|
|
$theme_keys = array_keys($theme_object->base_themes);
|
1436 |
|
|
$theme_keys[] = $theme;
|
1437 |
|
|
}
|
1438 |
|
|
else {
|
1439 |
|
|
$theme_keys = array($theme);
|
1440 |
|
|
}
|
1441 |
|
|
foreach ($theme_keys as $theme_key) {
|
1442 |
|
|
if (!empty($themes[$theme_key]->info['settings'])) {
|
1443 |
|
|
$cache[$theme] = array_merge($cache[$theme], $themes[$theme_key]->info['settings']);
|
1444 |
|
|
}
|
1445 |
|
|
}
|
1446 |
|
|
}
|
1447 |
|
|
|
1448 |
|
|
// Get the saved global settings from the database.
|
1449 |
|
|
$cache[$theme] = array_merge($cache[$theme], variable_get('theme_settings', array()));
|
1450 |
|
|
|
1451 |
|
|
if ($theme) {
|
1452 |
|
|
// Get the saved theme-specific settings from the database.
|
1453 |
|
|
$cache[$theme] = array_merge($cache[$theme], variable_get('theme_' . $theme . '_settings', array()));
|
1454 |
|
|
|
1455 |
|
|
// If the theme does not support a particular feature, override the global
|
1456 |
|
|
// setting and set the value to NULL.
|
1457 |
|
|
if (!empty($theme_object->info['features'])) {
|
1458 |
|
|
foreach ($features as $feature) {
|
1459 |
|
|
if (!in_array($feature, $theme_object->info['features'])) {
|
1460 |
|
|
$cache[$theme]['toggle_' . $feature] = NULL;
|
1461 |
|
|
}
|
1462 |
|
|
}
|
1463 |
|
|
}
|
1464 |
|
|
|
1465 |
|
|
// Generate the path to the logo image.
|
1466 |
|
|
if ($cache[$theme]['toggle_logo']) {
|
1467 |
|
|
if ($cache[$theme]['default_logo']) {
|
1468 |
|
|
$cache[$theme]['logo'] = file_create_url(dirname($theme_object->filename) . '/logo.png');
|
1469 |
|
|
}
|
1470 |
|
|
elseif ($cache[$theme]['logo_path']) {
|
1471 |
|
|
$cache[$theme]['logo'] = file_create_url($cache[$theme]['logo_path']);
|
1472 |
|
|
}
|
1473 |
|
|
}
|
1474 |
|
|
|
1475 |
|
|
// Generate the path to the favicon.
|
1476 |
|
|
if ($cache[$theme]['toggle_favicon']) {
|
1477 |
|
|
if ($cache[$theme]['default_favicon']) {
|
1478 |
|
|
if (file_exists($favicon = dirname($theme_object->filename) . '/favicon.ico')) {
|
1479 |
|
|
$cache[$theme]['favicon'] = file_create_url($favicon);
|
1480 |
|
|
}
|
1481 |
|
|
else {
|
1482 |
|
|
$cache[$theme]['favicon'] = file_create_url('misc/favicon.ico');
|
1483 |
|
|
}
|
1484 |
|
|
}
|
1485 |
|
|
elseif ($cache[$theme]['favicon_path']) {
|
1486 |
|
|
$cache[$theme]['favicon'] = file_create_url($cache[$theme]['favicon_path']);
|
1487 |
|
|
}
|
1488 |
|
|
else {
|
1489 |
|
|
$cache[$theme]['toggle_favicon'] = FALSE;
|
1490 |
|
|
}
|
1491 |
|
|
}
|
1492 |
|
|
}
|
1493 |
|
|
}
|
1494 |
|
|
|
1495 |
|
|
return isset($cache[$theme][$setting_name]) ? $cache[$theme][$setting_name] : NULL;
|
1496 |
|
|
}
|
1497 |
|
|
|
1498 |
|
|
/**
|
1499 |
|
|
* Renders a system default template, which is essentially a PHP template.
|
1500 |
|
|
*
|
1501 |
|
|
* @param $template_file
|
1502 |
|
|
* The filename of the template to render.
|
1503 |
|
|
* @param $variables
|
1504 |
|
|
* A keyed array of variables that will appear in the output.
|
1505 |
|
|
*
|
1506 |
|
|
* @return
|
1507 |
|
|
* The output generated by the template.
|
1508 |
|
|
*/
|
1509 |
|
|
function theme_render_template($template_file, $variables) {
|
1510 |
|
|
// Extract the variables to a local namespace
|
1511 |
|
|
extract($variables, EXTR_SKIP);
|
1512 |
|
|
|
1513 |
|
|
// Start output buffering
|
1514 |
|
|
ob_start();
|
1515 |
|
|
|
1516 |
|
|
// Include the template file
|
1517 |
|
|
include DRUPAL_ROOT . '/' . $template_file;
|
1518 |
|
|
|
1519 |
|
|
// End buffering and return its contents
|
1520 |
|
|
return ob_get_clean();
|
1521 |
|
|
}
|
1522 |
|
|
|
1523 |
|
|
/**
|
1524 |
|
|
* Enables a given list of themes.
|
1525 |
|
|
*
|
1526 |
|
|
* @param $theme_list
|
1527 |
|
|
* An array of theme names.
|
1528 |
|
|
*/
|
1529 |
|
|
function theme_enable($theme_list) {
|
1530 |
|
|
drupal_clear_css_cache();
|
1531 |
|
|
|
1532 |
|
|
foreach ($theme_list as $key) {
|
1533 |
|
|
db_update('system')
|
1534 |
|
|
->fields(array('status' => 1))
|
1535 |
|
|
->condition('type', 'theme')
|
1536 |
|
|
->condition('name', $key)
|
1537 |
|
|
->execute();
|
1538 |
|
|
}
|
1539 |
|
|
|
1540 |
|
|
list_themes(TRUE);
|
1541 |
|
|
menu_rebuild();
|
1542 |
|
|
drupal_theme_rebuild();
|
1543 |
|
|
|
1544 |
|
|
// Invoke hook_themes_enabled() after the themes have been enabled.
|
1545 |
|
|
module_invoke_all('themes_enabled', $theme_list);
|
1546 |
|
|
}
|
1547 |
|
|
|
1548 |
|
|
/**
|
1549 |
|
|
* Disables a given list of themes.
|
1550 |
|
|
*
|
1551 |
|
|
* @param $theme_list
|
1552 |
|
|
* An array of theme names.
|
1553 |
|
|
*/
|
1554 |
|
|
function theme_disable($theme_list) {
|
1555 |
|
|
// Don't disable the default theme.
|
1556 |
|
|
if ($pos = array_search(variable_get('theme_default', 'bartik'), $theme_list) !== FALSE) {
|
1557 |
|
|
unset($theme_list[$pos]);
|
1558 |
|
|
if (empty($theme_list)) {
|
1559 |
|
|
return;
|
1560 |
|
|
}
|
1561 |
|
|
}
|
1562 |
|
|
|
1563 |
|
|
drupal_clear_css_cache();
|
1564 |
|
|
|
1565 |
|
|
foreach ($theme_list as $key) {
|
1566 |
|
|
db_update('system')
|
1567 |
|
|
->fields(array('status' => 0))
|
1568 |
|
|
->condition('type', 'theme')
|
1569 |
|
|
->condition('name', $key)
|
1570 |
|
|
->execute();
|
1571 |
|
|
}
|
1572 |
|
|
|
1573 |
|
|
list_themes(TRUE);
|
1574 |
|
|
menu_rebuild();
|
1575 |
|
|
drupal_theme_rebuild();
|
1576 |
|
|
|
1577 |
|
|
// Invoke hook_themes_disabled after the themes have been disabled.
|
1578 |
|
|
module_invoke_all('themes_disabled', $theme_list);
|
1579 |
|
|
}
|
1580 |
|
|
|
1581 |
|
|
/**
|
1582 |
|
|
* @addtogroup themeable
|
1583 |
|
|
* @{
|
1584 |
|
|
*/
|
1585 |
|
|
|
1586 |
|
|
/**
|
1587 |
|
|
* Returns HTML for status and/or error messages, grouped by type.
|
1588 |
|
|
*
|
1589 |
|
|
* An invisible heading identifies the messages for assistive technology.
|
1590 |
|
|
* Sighted users see a colored box. See http://www.w3.org/TR/WCAG-TECHS/H69.html
|
1591 |
|
|
* for info.
|
1592 |
|
|
*
|
1593 |
|
|
* @param $variables
|
1594 |
|
|
* An associative array containing:
|
1595 |
|
|
* - display: (optional) Set to 'status' or 'error' to display only messages
|
1596 |
|
|
* of that type.
|
1597 |
|
|
*/
|
1598 |
|
|
function theme_status_messages($variables) {
|
1599 |
|
|
$display = $variables['display'];
|
1600 |
|
|
$output = '';
|
1601 |
|
|
|
1602 |
|
|
$status_heading = array(
|
1603 |
|
|
'status' => t('Status message'),
|
1604 |
|
|
'error' => t('Error message'),
|
1605 |
|
|
'warning' => t('Warning message'),
|
1606 |
|
|
);
|
1607 |
|
|
foreach (drupal_get_messages($display) as $type => $messages) {
|
1608 |
|
|
$output .= "<div class=\"messages $type\">\n";
|
1609 |
|
|
if (!empty($status_heading[$type])) {
|
1610 |
|
|
$output .= '<h2 class="element-invisible">' . $status_heading[$type] . "</h2>\n";
|
1611 |
|
|
}
|
1612 |
|
|
if (count($messages) > 1) {
|
1613 |
|
|
$output .= " <ul>\n";
|
1614 |
|
|
foreach ($messages as $message) {
|
1615 |
|
|
$output .= ' <li>' . $message . "</li>\n";
|
1616 |
|
|
}
|
1617 |
|
|
$output .= " </ul>\n";
|
1618 |
|
|
}
|
1619 |
|
|
else {
|
1620 |
|
|
$output .= $messages[0];
|
1621 |
|
|
}
|
1622 |
|
|
$output .= "</div>\n";
|
1623 |
|
|
}
|
1624 |
|
|
return $output;
|
1625 |
|
|
}
|
1626 |
|
|
|
1627 |
|
|
/**
|
1628 |
|
|
* Returns HTML for a link.
|
1629 |
|
|
*
|
1630 |
|
|
* All Drupal code that outputs a link should call the l() function. That
|
1631 |
|
|
* function performs some initial preprocessing, and then, if necessary, calls
|
1632 |
|
|
* theme('link') for rendering the anchor tag.
|
1633 |
|
|
*
|
1634 |
|
|
* To optimize performance for sites that don't need custom theming of links,
|
1635 |
|
|
* the l() function includes an inline copy of this function, and uses that
|
1636 |
|
|
* copy if none of the enabled modules or the active theme implement any
|
1637 |
|
|
* preprocess or process functions or override this theme implementation.
|
1638 |
|
|
*
|
1639 |
|
|
* @param $variables
|
1640 |
|
|
* An associative array containing the keys 'text', 'path', and 'options'.
|
1641 |
|
|
* See the l() function for information about these variables.
|
1642 |
|
|
*
|
1643 |
|
|
* @see l()
|
1644 |
|
|
*/
|
1645 |
|
|
function theme_link($variables) {
|
1646 |
|
|
return '<a href="' . check_plain(url($variables['path'], $variables['options'])) . '"' . drupal_attributes($variables['options']['attributes']) . '>' . ($variables['options']['html'] ? $variables['text'] : check_plain($variables['text'])) . '</a>';
|
1647 |
|
|
}
|
1648 |
|
|
|
1649 |
|
|
/**
|
1650 |
|
|
* Returns HTML for a set of links.
|
1651 |
|
|
*
|
1652 |
|
|
* @param $variables
|
1653 |
|
|
* An associative array containing:
|
1654 |
|
|
* - links: An associative array of links to be themed. The key for each link
|
1655 |
|
|
* is used as its CSS class. Each link should be itself an array, with the
|
1656 |
|
|
* following elements:
|
1657 |
|
|
* - title: The link text.
|
1658 |
|
|
* - href: The link URL. If omitted, the 'title' is shown as a plain text
|
1659 |
|
|
* item in the links list.
|
1660 |
|
|
* - html: (optional) Whether or not 'title' is HTML. If set, the title
|
1661 |
|
|
* will not be passed through check_plain().
|
1662 |
|
|
* - attributes: (optional) Attributes for the anchor, or for the <span>
|
1663 |
|
|
* tag used in its place if no 'href' is supplied. If element 'class' is
|
1664 |
|
|
* included, it must be an array of one or more class names.
|
1665 |
|
|
* If the 'href' element is supplied, the entire link array is passed to
|
1666 |
|
|
* l() as its $options parameter.
|
1667 |
|
|
* - attributes: A keyed array of attributes for the UL containing the
|
1668 |
|
|
* list of links.
|
1669 |
|
|
* - heading: (optional) A heading to precede the links. May be an
|
1670 |
|
|
* associative array or a string. If it's an array, it can have the
|
1671 |
|
|
* following elements:
|
1672 |
|
|
* - text: The heading text.
|
1673 |
|
|
* - level: The heading level (e.g. 'h2', 'h3').
|
1674 |
|
|
* - class: (optional) An array of the CSS classes for the heading.
|
1675 |
|
|
* When using a string it will be used as the text of the heading and the
|
1676 |
|
|
* level will default to 'h2'. Headings should be used on navigation menus
|
1677 |
|
|
* and any list of links that consistently appears on multiple pages. To
|
1678 |
|
|
* make the heading invisible use the 'element-invisible' CSS class. Do not
|
1679 |
|
|
* use 'display:none', which removes it from screen-readers and assistive
|
1680 |
|
|
* technology. Headings allow screen-reader and keyboard only users to
|
1681 |
|
|
* navigate to or skip the links. See
|
1682 |
|
|
* http://juicystudio.com/article/screen-readers-display-none.php and
|
1683 |
|
|
* http://www.w3.org/TR/WCAG-TECHS/H42.html for more information.
|
1684 |
|
|
*/
|
1685 |
|
|
function theme_links($variables) {
|
1686 |
|
|
$links = $variables['links'];
|
1687 |
|
|
$attributes = $variables['attributes'];
|
1688 |
|
|
$heading = $variables['heading'];
|
1689 |
|
|
global $language_url;
|
1690 |
|
|
$output = '';
|
1691 |
|
|
|
1692 |
|
|
if (count($links) > 0) {
|
1693 |
|
|
$output = '';
|
1694 |
|
|
|
1695 |
|
|
// Treat the heading first if it is present to prepend it to the
|
1696 |
|
|
// list of links.
|
1697 |
|
|
if (!empty($heading)) {
|
1698 |
|
|
if (is_string($heading)) {
|
1699 |
|
|
// Prepare the array that will be used when the passed heading
|
1700 |
|
|
// is a string.
|
1701 |
|
|
$heading = array(
|
1702 |
|
|
'text' => $heading,
|
1703 |
|
|
// Set the default level of the heading.
|
1704 |
|
|
'level' => 'h2',
|
1705 |
|
|
);
|
1706 |
|
|
}
|
1707 |
|
|
$output .= '<' . $heading['level'];
|
1708 |
|
|
if (!empty($heading['class'])) {
|
1709 |
|
|
$output .= drupal_attributes(array('class' => $heading['class']));
|
1710 |
|
|
}
|
1711 |
|
|
$output .= '>' . check_plain($heading['text']) . '</' . $heading['level'] . '>';
|
1712 |
|
|
}
|
1713 |
|
|
|
1714 |
|
|
$output .= '<ul' . drupal_attributes($attributes) . '>';
|
1715 |
|
|
|
1716 |
|
|
$num_links = count($links);
|
1717 |
|
|
$i = 1;
|
1718 |
|
|
|
1719 |
|
|
foreach ($links as $key => $link) {
|
1720 |
|
|
$class = array($key);
|
1721 |
|
|
|
1722 |
|
|
// Add first, last and active classes to the list of links to help out themers.
|
1723 |
|
|
if ($i == 1) {
|
1724 |
|
|
$class[] = 'first';
|
1725 |
|
|
}
|
1726 |
|
|
if ($i == $num_links) {
|
1727 |
|
|
$class[] = 'last';
|
1728 |
|
|
}
|
1729 |
|
|
if (isset($link['href']) && ($link['href'] == $_GET['q'] || ($link['href'] == '<front>' && drupal_is_front_page()))
|
1730 |
|
|
&& (empty($link['language']) || $link['language']->language == $language_url->language)) {
|
1731 |
|
|
$class[] = 'active';
|
1732 |
|
|
}
|
1733 |
|
|
$output .= '<li' . drupal_attributes(array('class' => $class)) . '>';
|
1734 |
|
|
|
1735 |
|
|
if (isset($link['href'])) {
|
1736 |
|
|
// Pass in $link as $options, they share the same keys.
|
1737 |
|
|
$output .= l($link['title'], $link['href'], $link);
|
1738 |
|
|
}
|
1739 |
|
|
elseif (!empty($link['title'])) {
|
1740 |
|
|
// Some links are actually not links, but we wrap these in <span> for adding title and class attributes.
|
1741 |
|
|
if (empty($link['html'])) {
|
1742 |
|
|
$link['title'] = check_plain($link['title']);
|
1743 |
|
|
}
|
1744 |
|
|
$span_attributes = '';
|
1745 |
|
|
if (isset($link['attributes'])) {
|
1746 |
|
|
$span_attributes = drupal_attributes($link['attributes']);
|
1747 |
|
|
}
|
1748 |
|
|
$output .= '<span' . $span_attributes . '>' . $link['title'] . '</span>';
|
1749 |
|
|
}
|
1750 |
|
|
|
1751 |
|
|
$i++;
|
1752 |
|
|
$output .= "</li>\n";
|
1753 |
|
|
}
|
1754 |
|
|
|
1755 |
|
|
$output .= '</ul>';
|
1756 |
|
|
}
|
1757 |
|
|
|
1758 |
|
|
return $output;
|
1759 |
|
|
}
|
1760 |
|
|
|
1761 |
|
|
/**
|
1762 |
|
|
* Returns HTML for an image.
|
1763 |
|
|
*
|
1764 |
|
|
* @param $variables
|
1765 |
|
|
* An associative array containing:
|
1766 |
|
|
* - path: Either the path of the image file (relative to base_path()) or a
|
1767 |
|
|
* full URL.
|
1768 |
|
|
* - width: The width of the image (if known).
|
1769 |
|
|
* - height: The height of the image (if known).
|
1770 |
|
|
* - alt: The alternative text for text-based browsers. HTML 4 and XHTML 1.0
|
1771 |
|
|
* always require an alt attribute. The HTML 5 draft allows the alt
|
1772 |
|
|
* attribute to be omitted in some cases. Therefore, this variable defaults
|
1773 |
|
|
* to an empty string, but can be set to NULL for the attribute to be
|
1774 |
|
|
* omitted. Usually, neither omission nor an empty string satisfies
|
1775 |
|
|
* accessibility requirements, so it is strongly encouraged for code
|
1776 |
|
|
* calling theme('image') to pass a meaningful value for this variable.
|
1777 |
|
|
* - http://www.w3.org/TR/REC-html40/struct/objects.html#h-13.8
|
1778 |
|
|
* - http://www.w3.org/TR/xhtml1/dtds.html
|
1779 |
|
|
* - http://dev.w3.org/html5/spec/Overview.html#alt
|
1780 |
|
|
* - title: The title text is displayed when the image is hovered in some
|
1781 |
|
|
* popular browsers.
|
1782 |
|
|
* - attributes: Associative array of attributes to be placed in the img tag.
|
1783 |
|
|
*/
|
1784 |
|
|
function theme_image($variables) {
|
1785 |
|
|
$attributes = $variables['attributes'];
|
1786 |
|
|
$attributes['src'] = file_create_url($variables['path']);
|
1787 |
|
|
|
1788 |
|
|
foreach (array('width', 'height', 'alt', 'title') as $key) {
|
1789 |
|
|
|
1790 |
|
|
if (isset($variables[$key])) {
|
1791 |
|
|
$attributes[$key] = $variables[$key];
|
1792 |
|
|
}
|
1793 |
|
|
}
|
1794 |
|
|
|
1795 |
|
|
return '<img' . drupal_attributes($attributes) . ' />';
|
1796 |
|
|
}
|
1797 |
|
|
|
1798 |
|
|
/**
|
1799 |
|
|
* Returns HTML for a breadcrumb trail.
|
1800 |
|
|
*
|
1801 |
|
|
* @param $variables
|
1802 |
|
|
* An associative array containing:
|
1803 |
|
|
* - breadcrumb: An array containing the breadcrumb links.
|
1804 |
|
|
*/
|
1805 |
|
|
function theme_breadcrumb($variables) {
|
1806 |
|
|
$breadcrumb = $variables['breadcrumb'];
|
1807 |
|
|
|
1808 |
|
|
if (!empty($breadcrumb)) {
|
1809 |
|
|
// Provide a navigational heading to give context for breadcrumb links to
|
1810 |
|
|
// screen-reader users. Make the heading invisible with .element-invisible.
|
1811 |
|
|
$output = '<h2 class="element-invisible">' . t('You are here') . '</h2>';
|
1812 |
|
|
|
1813 |
|
|
$output .= '<div class="breadcrumb">' . implode(' » ', $breadcrumb) . '</div>';
|
1814 |
|
|
return $output;
|
1815 |
|
|
}
|
1816 |
|
|
}
|
1817 |
|
|
|
1818 |
|
|
/**
|
1819 |
|
|
* Returns HTML for a table.
|
1820 |
|
|
*
|
1821 |
|
|
* @param $variables
|
1822 |
|
|
* An associative array containing:
|
1823 |
|
|
* - header: An array containing the table headers. Each element of the array
|
1824 |
|
|
* can be either a localized string or an associative array with the
|
1825 |
|
|
* following keys:
|
1826 |
|
|
* - "data": The localized title of the table column.
|
1827 |
|
|
* - "field": The database field represented in the table column (required
|
1828 |
|
|
* if user is to be able to sort on this column).
|
1829 |
|
|
* - "sort": A default sort order for this column ("asc" or "desc"). Only
|
1830 |
|
|
* one column should be given a default sort order because table sorting
|
1831 |
|
|
* only applies to one column at a time.
|
1832 |
|
|
* - Any HTML attributes, such as "colspan", to apply to the column header
|
1833 |
|
|
* cell.
|
1834 |
|
|
* - rows: An array of table rows. Every row is an array of cells, or an
|
1835 |
|
|
* associative array with the following keys:
|
1836 |
|
|
* - "data": an array of cells
|
1837 |
|
|
* - Any HTML attributes, such as "class", to apply to the table row.
|
1838 |
|
|
* - "no_striping": a boolean indicating that the row should receive no
|
1839 |
|
|
* 'even / odd' styling. Defaults to FALSE.
|
1840 |
|
|
* Each cell can be either a string or an associative array with the
|
1841 |
|
|
* following keys:
|
1842 |
|
|
* - "data": The string to display in the table cell.
|
1843 |
|
|
* - "header": Indicates this cell is a header.
|
1844 |
|
|
* - Any HTML attributes, such as "colspan", to apply to the table cell.
|
1845 |
|
|
* Here's an example for $rows:
|
1846 |
|
|
* @code
|
1847 |
|
|
* $rows = array(
|
1848 |
|
|
* // Simple row
|
1849 |
|
|
* array(
|
1850 |
|
|
* 'Cell 1', 'Cell 2', 'Cell 3'
|
1851 |
|
|
* ),
|
1852 |
|
|
* // Row with attributes on the row and some of its cells.
|
1853 |
|
|
* array(
|
1854 |
|
|
* 'data' => array('Cell 1', array('data' => 'Cell 2', 'colspan' => 2)), 'class' => array('funky')
|
1855 |
|
|
* )
|
1856 |
|
|
* );
|
1857 |
|
|
* @endcode
|
1858 |
|
|
* - attributes: An array of HTML attributes to apply to the table tag.
|
1859 |
|
|
* - caption: A localized string to use for the <caption> tag.
|
1860 |
|
|
* - colgroups: An array of column groups. Each element of the array can be
|
1861 |
|
|
* either:
|
1862 |
|
|
* - An array of columns, each of which is an associative array of HTML
|
1863 |
|
|
* attributes applied to the COL element.
|
1864 |
|
|
* - An array of attributes applied to the COLGROUP element, which must
|
1865 |
|
|
* include a "data" attribute. To add attributes to COL elements, set the
|
1866 |
|
|
* "data" attribute with an array of columns, each of which is an
|
1867 |
|
|
* associative array of HTML attributes.
|
1868 |
|
|
* Here's an example for $colgroup:
|
1869 |
|
|
* @code
|
1870 |
|
|
* $colgroup = array(
|
1871 |
|
|
* // COLGROUP with one COL element.
|
1872 |
|
|
* array(
|
1873 |
|
|
* array(
|
1874 |
|
|
* 'class' => array('funky'), // Attribute for the COL element.
|
1875 |
|
|
* ),
|
1876 |
|
|
* ),
|
1877 |
|
|
* // Colgroup with attributes and inner COL elements.
|
1878 |
|
|
* array(
|
1879 |
|
|
* 'data' => array(
|
1880 |
|
|
* array(
|
1881 |
|
|
* 'class' => array('funky'), // Attribute for the COL element.
|
1882 |
|
|
* ),
|
1883 |
|
|
* ),
|
1884 |
|
|
* 'class' => array('jazzy'), // Attribute for the COLGROUP element.
|
1885 |
|
|
* ),
|
1886 |
|
|
* );
|
1887 |
|
|
* @endcode
|
1888 |
|
|
* These optional tags are used to group and set properties on columns
|
1889 |
|
|
* within a table. For example, one may easily group three columns and
|
1890 |
|
|
* apply same background style to all.
|
1891 |
|
|
* - sticky: Use a "sticky" table header.
|
1892 |
|
|
* - empty: The message to display in an extra row if table does not have any
|
1893 |
|
|
* rows.
|
1894 |
|
|
*/
|
1895 |
|
|
function theme_table($variables) {
|
1896 |
|
|
$header = $variables['header'];
|
1897 |
|
|
$rows = $variables['rows'];
|
1898 |
|
|
$attributes = $variables['attributes'];
|
1899 |
|
|
$caption = $variables['caption'];
|
1900 |
|
|
$colgroups = $variables['colgroups'];
|
1901 |
|
|
$sticky = $variables['sticky'];
|
1902 |
|
|
$empty = $variables['empty'];
|
1903 |
|
|
|
1904 |
|
|
// Add sticky headers, if applicable.
|
1905 |
|
|
if (count($header) && $sticky) {
|
1906 |
|
|
drupal_add_js('misc/tableheader.js');
|
1907 |
|
|
// Add 'sticky-enabled' class to the table to identify it for JS.
|
1908 |
|
|
// This is needed to target tables constructed by this function.
|
1909 |
|
|
$attributes['class'][] = 'sticky-enabled';
|
1910 |
|
|
}
|
1911 |
|
|
|
1912 |
|
|
$output = '<table' . drupal_attributes($attributes) . ">\n";
|
1913 |
|
|
|
1914 |
|
|
if (isset($caption)) {
|
1915 |
|
|
$output .= '<caption>' . $caption . "</caption>\n";
|
1916 |
|
|
}
|
1917 |
|
|
|
1918 |
|
|
// Format the table columns:
|
1919 |
|
|
if (count($colgroups)) {
|
1920 |
|
|
foreach ($colgroups as $number => $colgroup) {
|
1921 |
|
|
$attributes = array();
|
1922 |
|
|
|
1923 |
|
|
// Check if we're dealing with a simple or complex column
|
1924 |
|
|
if (isset($colgroup['data'])) {
|
1925 |
|
|
foreach ($colgroup as $key => $value) {
|
1926 |
|
|
if ($key == 'data') {
|
1927 |
|
|
$cols = $value;
|
1928 |
|
|
}
|
1929 |
|
|
else {
|
1930 |
|
|
$attributes[$key] = $value;
|
1931 |
|
|
}
|
1932 |
|
|
}
|
1933 |
|
|
}
|
1934 |
|
|
else {
|
1935 |
|
|
$cols = $colgroup;
|
1936 |
|
|
}
|
1937 |
|
|
|
1938 |
|
|
// Build colgroup
|
1939 |
|
|
if (is_array($cols) && count($cols)) {
|
1940 |
|
|
$output .= ' <colgroup' . drupal_attributes($attributes) . '>';
|
1941 |
|
|
$i = 0;
|
1942 |
|
|
foreach ($cols as $col) {
|
1943 |
|
|
$output .= ' <col' . drupal_attributes($col) . ' />';
|
1944 |
|
|
}
|
1945 |
|
|
$output .= " </colgroup>\n";
|
1946 |
|
|
}
|
1947 |
|
|
else {
|
1948 |
|
|
$output .= ' <colgroup' . drupal_attributes($attributes) . " />\n";
|
1949 |
|
|
}
|
1950 |
|
|
}
|
1951 |
|
|
}
|
1952 |
|
|
|
1953 |
|
|
// Add the 'empty' row message if available.
|
1954 |
|
|
if (!count($rows) && $empty) {
|
1955 |
|
|
$header_count = 0;
|
1956 |
|
|
foreach ($header as $header_cell) {
|
1957 |
|
|
if (is_array($header_cell)) {
|
1958 |
|
|
$header_count += isset($header_cell['colspan']) ? $header_cell['colspan'] : 1;
|
1959 |
|
|
}
|
1960 |
|
|
else {
|
1961 |
|
|
$header_count++;
|
1962 |
|
|
}
|
1963 |
|
|
}
|
1964 |
|
|
$rows[] = array(array('data' => $empty, 'colspan' => $header_count, 'class' => array('empty', 'message')));
|
1965 |
|
|
}
|
1966 |
|
|
|
1967 |
|
|
// Format the table header:
|
1968 |
|
|
if (count($header)) {
|
1969 |
|
|
$ts = tablesort_init($header);
|
1970 |
|
|
// HTML requires that the thead tag has tr tags in it followed by tbody
|
1971 |
|
|
// tags. Using ternary operator to check and see if we have any rows.
|
1972 |
|
|
$output .= (count($rows) ? ' <thead><tr>' : ' <tr>');
|
1973 |
|
|
foreach ($header as $cell) {
|
1974 |
|
|
$cell = tablesort_header($cell, $header, $ts);
|
1975 |
|
|
$output .= _theme_table_cell($cell, TRUE);
|
1976 |
|
|
}
|
1977 |
|
|
// Using ternary operator to close the tags based on whether or not there are rows
|
1978 |
|
|
$output .= (count($rows) ? " </tr></thead>\n" : "</tr>\n");
|
1979 |
|
|
}
|
1980 |
|
|
else {
|
1981 |
|
|
$ts = array();
|
1982 |
|
|
}
|
1983 |
|
|
|
1984 |
|
|
// Format the table rows:
|
1985 |
|
|
if (count($rows)) {
|
1986 |
|
|
$output .= "<tbody>\n";
|
1987 |
|
|
$flip = array('even' => 'odd', 'odd' => 'even');
|
1988 |
|
|
$class = 'even';
|
1989 |
|
|
foreach ($rows as $number => $row) {
|
1990 |
|
|
// Check if we're dealing with a simple or complex row
|
1991 |
|
|
if (isset($row['data'])) {
|
1992 |
|
|
$cells = $row['data'];
|
1993 |
|
|
$no_striping = isset($row['no_striping']) ? $row['no_striping'] : FALSE;
|
1994 |
|
|
|
1995 |
|
|
// Set the attributes array and exclude 'data' and 'no_striping'.
|
1996 |
|
|
$attributes = $row;
|
1997 |
|
|
unset($attributes['data']);
|
1998 |
|
|
unset($attributes['no_striping']);
|
1999 |
|
|
}
|
2000 |
|
|
else {
|
2001 |
|
|
$cells = $row;
|
2002 |
|
|
$attributes = array();
|
2003 |
|
|
$no_striping = FALSE;
|
2004 |
|
|
}
|
2005 |
|
|
if (count($cells)) {
|
2006 |
|
|
// Add odd/even class
|
2007 |
|
|
if (!$no_striping) {
|
2008 |
|
|
$class = $flip[$class];
|
2009 |
|
|
$attributes['class'][] = $class;
|
2010 |
|
|
}
|
2011 |
|
|
|
2012 |
|
|
// Build row
|
2013 |
|
|
$output .= ' <tr' . drupal_attributes($attributes) . '>';
|
2014 |
|
|
$i = 0;
|
2015 |
|
|
foreach ($cells as $cell) {
|
2016 |
|
|
$cell = tablesort_cell($cell, $header, $ts, $i++);
|
2017 |
|
|
$output .= _theme_table_cell($cell);
|
2018 |
|
|
}
|
2019 |
|
|
$output .= " </tr>\n";
|
2020 |
|
|
}
|
2021 |
|
|
}
|
2022 |
|
|
$output .= "</tbody>\n";
|
2023 |
|
|
}
|
2024 |
|
|
|
2025 |
|
|
$output .= "</table>\n";
|
2026 |
|
|
return $output;
|
2027 |
|
|
}
|
2028 |
|
|
|
2029 |
|
|
/**
|
2030 |
|
|
* Returns HTML for a sort icon.
|
2031 |
|
|
*
|
2032 |
|
|
* @param $variables
|
2033 |
|
|
* An associative array containing:
|
2034 |
|
|
* - style: Set to either 'asc' or 'desc', this determines which icon to
|
2035 |
|
|
* show.
|
2036 |
|
|
*/
|
2037 |
|
|
function theme_tablesort_indicator($variables) {
|
2038 |
|
|
if ($variables['style'] == "asc") {
|
2039 |
|
|
return theme('image', array('path' => 'misc/arrow-asc.png', 'width' => 13, 'height' => 13, 'alt' => t('sort ascending'), 'title' => t('sort ascending')));
|
2040 |
|
|
}
|
2041 |
|
|
else {
|
2042 |
|
|
return theme('image', array('path' => 'misc/arrow-desc.png', 'width' => 13, 'height' => 13, 'alt' => t('sort descending'), 'title' => t('sort descending')));
|
2043 |
|
|
}
|
2044 |
|
|
}
|
2045 |
|
|
|
2046 |
|
|
/**
|
2047 |
|
|
* Returns HTML for a marker for new or updated content.
|
2048 |
|
|
*
|
2049 |
|
|
* @param $variables
|
2050 |
|
|
* An associative array containing:
|
2051 |
|
|
* - type: Number representing the marker type to display. See MARK_NEW,
|
2052 |
|
|
* MARK_UPDATED, MARK_READ.
|
2053 |
|
|
*/
|
2054 |
|
|
function theme_mark($variables) {
|
2055 |
|
|
$type = $variables['type'];
|
2056 |
|
|
global $user;
|
2057 |
|
|
if ($user->uid) {
|
2058 |
|
|
if ($type == MARK_NEW) {
|
2059 |
|
|
return ' <span class="marker">' . t('new') . '</span>';
|
2060 |
|
|
}
|
2061 |
|
|
elseif ($type == MARK_UPDATED) {
|
2062 |
|
|
return ' <span class="marker">' . t('updated') . '</span>';
|
2063 |
|
|
}
|
2064 |
|
|
}
|
2065 |
|
|
}
|
2066 |
|
|
|
2067 |
|
|
/**
|
2068 |
|
|
* Returns HTML for a list or nested list of items.
|
2069 |
|
|
*
|
2070 |
|
|
* @param $variables
|
2071 |
|
|
* An associative array containing:
|
2072 |
|
|
* - items: An array of items to be displayed in the list. If an item is a
|
2073 |
|
|
* string, then it is used as is. If an item is an array, then the "data"
|
2074 |
|
|
* element of the array is used as the contents of the list item. If an item
|
2075 |
|
|
* is an array with a "children" element, those children are displayed in a
|
2076 |
|
|
* nested list. All other elements are treated as attributes of the list
|
2077 |
|
|
* item element.
|
2078 |
|
|
* - title: The title of the list.
|
2079 |
|
|
* - type: The type of list to return (e.g. "ul", "ol").
|
2080 |
|
|
* - attributes: The attributes applied to the list element.
|
2081 |
|
|
*/
|
2082 |
|
|
function theme_item_list($variables) {
|
2083 |
|
|
$items = $variables['items'];
|
2084 |
|
|
$title = $variables['title'];
|
2085 |
|
|
$type = $variables['type'];
|
2086 |
|
|
$attributes = $variables['attributes'];
|
2087 |
|
|
|
2088 |
|
|
// Only output the list container and title, if there are any list items.
|
2089 |
|
|
// Check to see whether the block title exists before adding a header.
|
2090 |
|
|
// Empty headers are not semantic and present accessibility challenges.
|
2091 |
|
|
$output = '<div class="item-list">';
|
2092 |
|
|
if (isset($title) && $title !== '') {
|
2093 |
|
|
$output .= '<h3>' . $title . '</h3>';
|
2094 |
|
|
}
|
2095 |
|
|
|
2096 |
|
|
if (!empty($items)) {
|
2097 |
|
|
$output .= "<$type" . drupal_attributes($attributes) . '>';
|
2098 |
|
|
$num_items = count($items);
|
2099 |
|
|
$i = 0;
|
2100 |
|
|
foreach ($items as $item) {
|
2101 |
|
|
$attributes = array();
|
2102 |
|
|
$children = array();
|
2103 |
|
|
$data = '';
|
2104 |
|
|
$i++;
|
2105 |
|
|
if (is_array($item)) {
|
2106 |
|
|
foreach ($item as $key => $value) {
|
2107 |
|
|
if ($key == 'data') {
|
2108 |
|
|
$data = $value;
|
2109 |
|
|
}
|
2110 |
|
|
elseif ($key == 'children') {
|
2111 |
|
|
$children = $value;
|
2112 |
|
|
}
|
2113 |
|
|
else {
|
2114 |
|
|
$attributes[$key] = $value;
|
2115 |
|
|
}
|
2116 |
|
|
}
|
2117 |
|
|
}
|
2118 |
|
|
else {
|
2119 |
|
|
$data = $item;
|
2120 |
|
|
}
|
2121 |
|
|
if (count($children) > 0) {
|
2122 |
|
|
// Render nested list.
|
2123 |
|
|
$data .= theme_item_list(array('items' => $children, 'title' => NULL, 'type' => $type, 'attributes' => $attributes));
|
2124 |
|
|
}
|
2125 |
|
|
if ($i == 1) {
|
2126 |
|
|
$attributes['class'][] = 'first';
|
2127 |
|
|
}
|
2128 |
|
|
if ($i == $num_items) {
|
2129 |
|
|
$attributes['class'][] = 'last';
|
2130 |
|
|
}
|
2131 |
|
|
$output .= '<li' . drupal_attributes($attributes) . '>' . $data . "</li>\n";
|
2132 |
|
|
}
|
2133 |
|
|
$output .= "</$type>";
|
2134 |
|
|
}
|
2135 |
|
|
$output .= '</div>';
|
2136 |
|
|
return $output;
|
2137 |
|
|
}
|
2138 |
|
|
|
2139 |
|
|
/**
|
2140 |
|
|
* Returns HTML for a "more help" link.
|
2141 |
|
|
*
|
2142 |
|
|
* @param $variables
|
2143 |
|
|
* An associative array containing:
|
2144 |
|
|
* - url: The URL for the link.
|
2145 |
|
|
*/
|
2146 |
|
|
function theme_more_help_link($variables) {
|
2147 |
|
|
return '<div class="more-help-link">' . l(t('More help'), $variables['url']) . '</div>';
|
2148 |
|
|
}
|
2149 |
|
|
|
2150 |
|
|
/**
|
2151 |
|
|
* Returns HTML for a feed icon.
|
2152 |
|
|
*
|
2153 |
|
|
* @param $variables
|
2154 |
|
|
* An associative array containing:
|
2155 |
|
|
* - url: An internal system path or a fully qualified external URL of the
|
2156 |
|
|
* feed.
|
2157 |
|
|
* - title: A descriptive title of the feed.
|
2158 |
|
|
*/
|
2159 |
|
|
function theme_feed_icon($variables) {
|
2160 |
|
|
$text = t('Subscribe to !feed-title', array('!feed-title' => $variables['title']));
|
2161 |
|
|
if ($image = theme('image', array('path' => 'misc/feed.png', 'width' => 16, 'height' => 16, 'alt' => $text))) {
|
2162 |
|
|
return l($image, $variables['url'], array('html' => TRUE, 'attributes' => array('class' => array('feed-icon'), 'title' => $text)));
|
2163 |
|
|
}
|
2164 |
|
|
}
|
2165 |
|
|
|
2166 |
|
|
/**
|
2167 |
|
|
* Returns HTML for a generic HTML tag with attributes.
|
2168 |
|
|
*
|
2169 |
|
|
* @param $variables
|
2170 |
|
|
* An associative array containing:
|
2171 |
|
|
* - element: An associative array describing the tag:
|
2172 |
|
|
* - #tag: The tag name to output. Typical tags added to the HTML HEAD:
|
2173 |
|
|
* - meta: To provide meta information, such as a page refresh.
|
2174 |
|
|
* - link: To refer to stylesheets and other contextual information.
|
2175 |
|
|
* - script: To load JavaScript.
|
2176 |
|
|
* - #attributes: (optional) An array of HTML attributes to apply to the
|
2177 |
|
|
* tag.
|
2178 |
|
|
* - #value: (optional) A string containing tag content, such as inline
|
2179 |
|
|
* CSS.
|
2180 |
|
|
* - #value_prefix: (optional) A string to prepend to #value, e.g. a CDATA
|
2181 |
|
|
* wrapper prefix.
|
2182 |
|
|
* - #value_suffix: (optional) A string to append to #value, e.g. a CDATA
|
2183 |
|
|
* wrapper suffix.
|
2184 |
|
|
*/
|
2185 |
|
|
function theme_html_tag($variables) {
|
2186 |
|
|
$element = $variables['element'];
|
2187 |
|
|
$attributes = isset($element['#attributes']) ? drupal_attributes($element['#attributes']) : '';
|
2188 |
|
|
if (!isset($element['#value'])) {
|
2189 |
|
|
return '<' . $element['#tag'] . $attributes . " />\n";
|
2190 |
|
|
}
|
2191 |
|
|
else {
|
2192 |
|
|
$output = '<' . $element['#tag'] . $attributes . '>';
|
2193 |
|
|
if (isset($element['#value_prefix'])) {
|
2194 |
|
|
$output .= $element['#value_prefix'];
|
2195 |
|
|
}
|
2196 |
|
|
$output .= $element['#value'];
|
2197 |
|
|
if (isset($element['#value_suffix'])) {
|
2198 |
|
|
$output .= $element['#value_suffix'];
|
2199 |
|
|
}
|
2200 |
|
|
$output .= '</' . $element['#tag'] . ">\n";
|
2201 |
|
|
return $output;
|
2202 |
|
|
}
|
2203 |
|
|
}
|
2204 |
|
|
|
2205 |
|
|
/**
|
2206 |
|
|
* Returns HTML for a "more" link, like those used in blocks.
|
2207 |
|
|
*
|
2208 |
|
|
* @param $variables
|
2209 |
|
|
* An associative array containing:
|
2210 |
|
|
* - url: The URL of the main page.
|
2211 |
|
|
* - title: A descriptive verb for the link, like 'Read more'.
|
2212 |
|
|
*/
|
2213 |
|
|
function theme_more_link($variables) {
|
2214 |
|
|
return '<div class="more-link">' . l(t('More'), $variables['url'], array('attributes' => array('title' => $variables['title']))) . '</div>';
|
2215 |
|
|
}
|
2216 |
|
|
|
2217 |
|
|
/**
|
2218 |
|
|
* Returns HTML for a username, potentially linked to the user's page.
|
2219 |
|
|
*
|
2220 |
|
|
* @param $variables
|
2221 |
|
|
* An associative array containing:
|
2222 |
|
|
* - account: The user object to format.
|
2223 |
|
|
* - name: The user's name, sanitized.
|
2224 |
|
|
* - extra: Additional text to append to the user's name, sanitized.
|
2225 |
|
|
* - link_path: The path or URL of the user's profile page, home page, or
|
2226 |
|
|
* other desired page to link to for more information about the user.
|
2227 |
|
|
* - link_options: An array of options to pass to the l() function's $options
|
2228 |
|
|
* parameter if linking the user's name to the user's page.
|
2229 |
|
|
* - attributes_array: An array of attributes to pass to the
|
2230 |
|
|
* drupal_attributes() function if not linking to the user's page.
|
2231 |
|
|
*
|
2232 |
|
|
* @see template_preprocess_username()
|
2233 |
|
|
* @see template_process_username()
|
2234 |
|
|
*/
|
2235 |
|
|
function theme_username($variables) {
|
2236 |
|
|
if (isset($variables['link_path'])) {
|
2237 |
|
|
// We have a link path, so we should generate a link using l().
|
2238 |
|
|
// Additional classes may be added as array elements like
|
2239 |
|
|
// $variables['link_options']['attributes']['class'][] = 'myclass';
|
2240 |
|
|
$output = l($variables['name'] . $variables['extra'], $variables['link_path'], $variables['link_options']);
|
2241 |
|
|
}
|
2242 |
|
|
else {
|
2243 |
|
|
// Modules may have added important attributes so they must be included
|
2244 |
|
|
// in the output. Additional classes may be added as array elements like
|
2245 |
|
|
// $variables['attributes_array']['class'][] = 'myclass';
|
2246 |
|
|
$output = '<span' . drupal_attributes($variables['attributes_array']) . '>' . $variables['name'] . $variables['extra'] . '</span>';
|
2247 |
|
|
}
|
2248 |
|
|
return $output;
|
2249 |
|
|
}
|
2250 |
|
|
|
2251 |
|
|
/**
|
2252 |
|
|
* Returns HTML for a progress bar.
|
2253 |
|
|
*
|
2254 |
|
|
* Note that the core Batch API uses this only for non-JavaScript batch jobs.
|
2255 |
|
|
*
|
2256 |
|
|
* @param $variables
|
2257 |
|
|
* An associative array containing:
|
2258 |
|
|
* - percent: The percentage of the progress.
|
2259 |
|
|
* - message: A string containing information to be displayed.
|
2260 |
|
|
*/
|
2261 |
|
|
function theme_progress_bar($variables) {
|
2262 |
|
|
$output = '<div id="progress" class="progress">';
|
2263 |
|
|
$output .= '<div class="bar"><div class="filled" style="width: ' . $variables['percent'] . '%"></div></div>';
|
2264 |
|
|
$output .= '<div class="percentage">' . $variables['percent'] . '%</div>';
|
2265 |
|
|
$output .= '<div class="message">' . $variables['message'] . '</div>';
|
2266 |
|
|
$output .= '</div>';
|
2267 |
|
|
|
2268 |
|
|
return $output;
|
2269 |
|
|
}
|
2270 |
|
|
|
2271 |
|
|
/**
|
2272 |
|
|
* Returns HTML for an indentation div; used for drag and drop tables.
|
2273 |
|
|
*
|
2274 |
|
|
* @param $variables
|
2275 |
|
|
* An associative array containing:
|
2276 |
|
|
* - size: Optional. The number of indentations to create.
|
2277 |
|
|
*/
|
2278 |
|
|
function theme_indentation($variables) {
|
2279 |
|
|
$output = '';
|
2280 |
|
|
for ($n = 0; $n < $variables['size']; $n++) {
|
2281 |
|
|
$output .= '<div class="indentation"> </div>';
|
2282 |
|
|
}
|
2283 |
|
|
return $output;
|
2284 |
|
|
}
|
2285 |
|
|
|
2286 |
|
|
/**
|
2287 |
|
|
* @} End of "addtogroup themeable".
|
2288 |
|
|
*/
|
2289 |
|
|
|
2290 |
|
|
/**
|
2291 |
|
|
* Returns HTML output for a single table cell for theme_table().
|
2292 |
|
|
*
|
2293 |
|
|
* @param $cell
|
2294 |
|
|
* Array of cell information, or string to display in cell.
|
2295 |
|
|
* @param bool $header
|
2296 |
|
|
* TRUE if this cell is a table header cell, FALSE if it is an ordinary
|
2297 |
|
|
* table cell. If $cell is an array with element 'header' set to TRUE, that
|
2298 |
|
|
* will override the $header parameter.
|
2299 |
|
|
*
|
2300 |
|
|
* @return
|
2301 |
|
|
* HTML for the cell.
|
2302 |
|
|
*/
|
2303 |
|
|
function _theme_table_cell($cell, $header = FALSE) {
|
2304 |
|
|
$attributes = '';
|
2305 |
|
|
|
2306 |
|
|
if (is_array($cell)) {
|
2307 |
|
|
$data = isset($cell['data']) ? $cell['data'] : '';
|
2308 |
|
|
// Cell's data property can be a string or a renderable array.
|
2309 |
|
|
if (is_array($data)) {
|
2310 |
|
|
$data = drupal_render($data);
|
2311 |
|
|
}
|
2312 |
|
|
$header |= isset($cell['header']);
|
2313 |
|
|
unset($cell['data']);
|
2314 |
|
|
unset($cell['header']);
|
2315 |
|
|
$attributes = drupal_attributes($cell);
|
2316 |
|
|
}
|
2317 |
|
|
else {
|
2318 |
|
|
$data = $cell;
|
2319 |
|
|
}
|
2320 |
|
|
|
2321 |
|
|
if ($header) {
|
2322 |
|
|
$output = "<th$attributes>$data</th>";
|
2323 |
|
|
}
|
2324 |
|
|
else {
|
2325 |
|
|
$output = "<td$attributes>$data</td>";
|
2326 |
|
|
}
|
2327 |
|
|
|
2328 |
|
|
return $output;
|
2329 |
|
|
}
|
2330 |
|
|
|
2331 |
|
|
/**
|
2332 |
|
|
* Adds a default set of helper variables for variable processors and templates.
|
2333 |
|
|
*
|
2334 |
|
|
* This function is called for theme hooks implemented as templates only, not
|
2335 |
|
|
* for theme hooks implemented as functions. This preprocess function is the
|
2336 |
|
|
* first in the sequence of preprocessing and processing functions that is
|
2337 |
|
|
* called when preparing variables for a template. See theme() for more details
|
2338 |
|
|
* about the full sequence.
|
2339 |
|
|
*
|
2340 |
|
|
* @see theme()
|
2341 |
|
|
* @see template_process()
|
2342 |
|
|
*/
|
2343 |
|
|
function template_preprocess(&$variables, $hook) {
|
2344 |
|
|
global $user;
|
2345 |
|
|
static $count = array();
|
2346 |
|
|
|
2347 |
|
|
// Track run count for each hook to provide zebra striping. See
|
2348 |
|
|
// "template_preprocess_block()" which provides the same feature specific to
|
2349 |
|
|
// blocks.
|
2350 |
|
|
$count[$hook] = isset($count[$hook]) && is_int($count[$hook]) ? $count[$hook] : 1;
|
2351 |
|
|
$variables['zebra'] = ($count[$hook] % 2) ? 'odd' : 'even';
|
2352 |
|
|
$variables['id'] = $count[$hook]++;
|
2353 |
|
|
|
2354 |
|
|
// Tell all templates where they are located.
|
2355 |
|
|
$variables['directory'] = path_to_theme();
|
2356 |
|
|
|
2357 |
|
|
// Initialize html class attribute for the current hook.
|
2358 |
|
|
$variables['classes_array'] = array(drupal_html_class($hook));
|
2359 |
|
|
|
2360 |
|
|
// Merge in variables that don't depend on hook and don't change during a
|
2361 |
|
|
// single page request.
|
2362 |
|
|
// Use the advanced drupal_static() pattern, since this is called very often.
|
2363 |
|
|
static $drupal_static_fast;
|
2364 |
|
|
if (!isset($drupal_static_fast)) {
|
2365 |
|
|
$drupal_static_fast['default_variables'] = &drupal_static(__FUNCTION__);
|
2366 |
|
|
}
|
2367 |
|
|
$default_variables = &$drupal_static_fast['default_variables'];
|
2368 |
|
|
// Global $user object shouldn't change during a page request once rendering
|
2369 |
|
|
// has started, but if there's an edge case where it does, re-fetch the
|
2370 |
|
|
// variables appropriate for the new user.
|
2371 |
|
|
if (!isset($default_variables) || ($user !== $default_variables['user'])) {
|
2372 |
|
|
$default_variables = _template_preprocess_default_variables();
|
2373 |
|
|
}
|
2374 |
|
|
$variables += $default_variables;
|
2375 |
|
|
}
|
2376 |
|
|
|
2377 |
|
|
/**
|
2378 |
|
|
* Returns hook-independent variables to template_preprocess().
|
2379 |
|
|
*/
|
2380 |
|
|
function _template_preprocess_default_variables() {
|
2381 |
|
|
global $user;
|
2382 |
|
|
|
2383 |
|
|
// Variables that don't depend on a database connection.
|
2384 |
|
|
$variables = array(
|
2385 |
|
|
'attributes_array' => array(),
|
2386 |
|
|
'title_attributes_array' => array(),
|
2387 |
|
|
'content_attributes_array' => array(),
|
2388 |
|
|
'title_prefix' => array(),
|
2389 |
|
|
'title_suffix' => array(),
|
2390 |
|
|
'user' => $user,
|
2391 |
|
|
'db_is_active' => !defined('MAINTENANCE_MODE'),
|
2392 |
|
|
'is_admin' => FALSE,
|
2393 |
|
|
'logged_in' => FALSE,
|
2394 |
|
|
);
|
2395 |
|
|
|
2396 |
|
|
// The user object has no uid property when the database does not exist during
|
2397 |
|
|
// install. The user_access() check deals with issues when in maintenance mode
|
2398 |
|
|
// as uid is set but the user.module has not been included.
|
2399 |
|
|
if (isset($user->uid) && function_exists('user_access')) {
|
2400 |
|
|
$variables['is_admin'] = user_access('access administration pages');
|
2401 |
|
|
$variables['logged_in'] = ($user->uid > 0);
|
2402 |
|
|
}
|
2403 |
|
|
|
2404 |
|
|
// drupal_is_front_page() might throw an exception.
|
2405 |
|
|
try {
|
2406 |
|
|
$variables['is_front'] = drupal_is_front_page();
|
2407 |
|
|
}
|
2408 |
|
|
catch (Exception $e) {
|
2409 |
|
|
// If the database is not yet available, set default values for these
|
2410 |
|
|
// variables.
|
2411 |
|
|
$variables['is_front'] = FALSE;
|
2412 |
|
|
$variables['db_is_active'] = FALSE;
|
2413 |
|
|
}
|
2414 |
|
|
|
2415 |
|
|
return $variables;
|
2416 |
|
|
}
|
2417 |
|
|
|
2418 |
|
|
/**
|
2419 |
|
|
* Adds helper variables derived from variables defined during preprocessing.
|
2420 |
|
|
*
|
2421 |
|
|
* When preparing variables for a theme hook implementation, all 'preprocess'
|
2422 |
|
|
* functions run first, then all 'process' functions (see theme() for details
|
2423 |
|
|
* about the full sequence).
|
2424 |
|
|
*
|
2425 |
|
|
* This function serializes array variables manipulated during the preprocessing
|
2426 |
|
|
* phase into strings for convenient use by templates. As with
|
2427 |
|
|
* template_preprocess(), this function does not get called for theme hooks
|
2428 |
|
|
* implemented as functions.
|
2429 |
|
|
*
|
2430 |
|
|
* @see theme()
|
2431 |
|
|
* @see template_preprocess()
|
2432 |
|
|
*/
|
2433 |
|
|
function template_process(&$variables, $hook) {
|
2434 |
|
|
// Flatten out classes.
|
2435 |
|
|
$variables['classes'] = implode(' ', $variables['classes_array']);
|
2436 |
|
|
|
2437 |
|
|
// Flatten out attributes, title_attributes, and content_attributes.
|
2438 |
|
|
// Because this function can be called very often, and often with empty
|
2439 |
|
|
// attributes, optimize performance by only calling drupal_attributes() if
|
2440 |
|
|
// necessary.
|
2441 |
|
|
$variables['attributes'] = $variables['attributes_array'] ? drupal_attributes($variables['attributes_array']) : '';
|
2442 |
|
|
$variables['title_attributes'] = $variables['title_attributes_array'] ? drupal_attributes($variables['title_attributes_array']) : '';
|
2443 |
|
|
$variables['content_attributes'] = $variables['content_attributes_array'] ? drupal_attributes($variables['content_attributes_array']) : '';
|
2444 |
|
|
}
|
2445 |
|
|
|
2446 |
|
|
/**
|
2447 |
|
|
* Preprocess variables for html.tpl.php
|
2448 |
|
|
*
|
2449 |
|
|
* @see system_elements()
|
2450 |
|
|
* @see html.tpl.php
|
2451 |
|
|
*/
|
2452 |
|
|
function template_preprocess_html(&$variables) {
|
2453 |
|
|
// Compile a list of classes that are going to be applied to the body element.
|
2454 |
|
|
// This allows advanced theming based on context (home page, node of certain type, etc.).
|
2455 |
|
|
// Add a class that tells us whether we're on the front page or not.
|
2456 |
|
|
$variables['classes_array'][] = $variables['is_front'] ? 'front' : 'not-front';
|
2457 |
|
|
// Add a class that tells us whether the page is viewed by an authenticated user or not.
|
2458 |
|
|
$variables['classes_array'][] = $variables['logged_in'] ? 'logged-in' : 'not-logged-in';
|
2459 |
|
|
|
2460 |
|
|
// Add information about the number of sidebars.
|
2461 |
|
|
if (!empty($variables['page']['sidebar_first']) && !empty($variables['page']['sidebar_second'])) {
|
2462 |
|
|
$variables['classes_array'][] = 'two-sidebars';
|
2463 |
|
|
}
|
2464 |
|
|
elseif (!empty($variables['page']['sidebar_first'])) {
|
2465 |
|
|
$variables['classes_array'][] = 'one-sidebar sidebar-first';
|
2466 |
|
|
}
|
2467 |
|
|
elseif (!empty($variables['page']['sidebar_second'])) {
|
2468 |
|
|
$variables['classes_array'][] = 'one-sidebar sidebar-second';
|
2469 |
|
|
}
|
2470 |
|
|
else {
|
2471 |
|
|
$variables['classes_array'][] = 'no-sidebars';
|
2472 |
|
|
}
|
2473 |
|
|
|
2474 |
|
|
// Populate the body classes.
|
2475 |
|
|
if ($suggestions = theme_get_suggestions(arg(), 'page', '-')) {
|
2476 |
|
|
foreach ($suggestions as $suggestion) {
|
2477 |
|
|
if ($suggestion != 'page-front') {
|
2478 |
|
|
// Add current suggestion to page classes to make it possible to theme
|
2479 |
|
|
// the page depending on the current page type (e.g. node, admin, user,
|
2480 |
|
|
// etc.) as well as more specific data like node-12 or node-edit.
|
2481 |
|
|
$variables['classes_array'][] = drupal_html_class($suggestion);
|
2482 |
|
|
}
|
2483 |
|
|
}
|
2484 |
|
|
}
|
2485 |
|
|
|
2486 |
|
|
// If on an individual node page, add the node type to body classes.
|
2487 |
|
|
if ($node = menu_get_object()) {
|
2488 |
|
|
$variables['classes_array'][] = drupal_html_class('node-type-' . $node->type);
|
2489 |
|
|
}
|
2490 |
|
|
|
2491 |
|
|
// RDFa allows annotation of XHTML pages with RDF data, while GRDDL provides
|
2492 |
|
|
// mechanisms for extraction of this RDF content via XSLT transformation
|
2493 |
|
|
// using an associated GRDDL profile.
|
2494 |
|
|
$variables['rdf_namespaces'] = drupal_get_rdf_namespaces();
|
2495 |
|
|
$variables['grddl_profile'] = 'http://www.w3.org/1999/xhtml/vocab';
|
2496 |
|
|
$variables['language'] = $GLOBALS['language'];
|
2497 |
|
|
$variables['language']->dir = $GLOBALS['language']->direction ? 'rtl' : 'ltr';
|
2498 |
|
|
|
2499 |
|
|
// Add favicon.
|
2500 |
|
|
if (theme_get_setting('toggle_favicon')) {
|
2501 |
|
|
$favicon = theme_get_setting('favicon');
|
2502 |
|
|
$type = theme_get_setting('favicon_mimetype');
|
2503 |
|
|
drupal_add_html_head_link(array('rel' => 'shortcut icon', 'href' => drupal_strip_dangerous_protocols($favicon), 'type' => $type));
|
2504 |
|
|
}
|
2505 |
|
|
|
2506 |
|
|
// Construct page title.
|
2507 |
|
|
if (drupal_get_title()) {
|
2508 |
|
|
$head_title = array(
|
2509 |
|
|
'title' => strip_tags(drupal_get_title()),
|
2510 |
|
|
'name' => check_plain(variable_get('site_name', 'Drupal')),
|
2511 |
|
|
);
|
2512 |
|
|
}
|
2513 |
|
|
else {
|
2514 |
|
|
$head_title = array('name' => check_plain(variable_get('site_name', 'Drupal')));
|
2515 |
|
|
if (variable_get('site_slogan', '')) {
|
2516 |
|
|
$head_title['slogan'] = filter_xss_admin(variable_get('site_slogan', ''));
|
2517 |
|
|
}
|
2518 |
|
|
}
|
2519 |
|
|
$variables['head_title_array'] = $head_title;
|
2520 |
|
|
$variables['head_title'] = implode(' | ', $head_title);
|
2521 |
|
|
|
2522 |
|
|
// Populate the page template suggestions.
|
2523 |
|
|
if ($suggestions = theme_get_suggestions(arg(), 'html')) {
|
2524 |
|
|
$variables['theme_hook_suggestions'] = $suggestions;
|
2525 |
|
|
}
|
2526 |
|
|
}
|
2527 |
|
|
|
2528 |
|
|
/**
|
2529 |
|
|
* Preprocess variables for page.tpl.php
|
2530 |
|
|
*
|
2531 |
|
|
* Most themes utilize their own copy of page.tpl.php. The default is located
|
2532 |
|
|
* inside "modules/system/page.tpl.php". Look in there for the full list of
|
2533 |
|
|
* variables.
|
2534 |
|
|
*
|
2535 |
|
|
* Uses the arg() function to generate a series of page template suggestions
|
2536 |
|
|
* based on the current path.
|
2537 |
|
|
*
|
2538 |
|
|
* Any changes to variables in this preprocessor should also be changed inside
|
2539 |
|
|
* template_preprocess_maintenance_page() to keep all of them consistent.
|
2540 |
|
|
*
|
2541 |
|
|
* @see drupal_render_page()
|
2542 |
|
|
* @see template_process_page()
|
2543 |
|
|
* @see page.tpl.php
|
2544 |
|
|
*/
|
2545 |
|
|
function template_preprocess_page(&$variables) {
|
2546 |
|
|
// Move some variables to the top level for themer convenience and template cleanliness.
|
2547 |
|
|
$variables['show_messages'] = $variables['page']['#show_messages'];
|
2548 |
|
|
|
2549 |
|
|
foreach (system_region_list($GLOBALS['theme']) as $region_key => $region_name) {
|
2550 |
|
|
if (!isset($variables['page'][$region_key])) {
|
2551 |
|
|
$variables['page'][$region_key] = array();
|
2552 |
|
|
}
|
2553 |
|
|
}
|
2554 |
|
|
|
2555 |
|
|
// Set up layout variable.
|
2556 |
|
|
$variables['layout'] = 'none';
|
2557 |
|
|
if (!empty($variables['page']['sidebar_first'])) {
|
2558 |
|
|
$variables['layout'] = 'first';
|
2559 |
|
|
}
|
2560 |
|
|
if (!empty($variables['page']['sidebar_second'])) {
|
2561 |
|
|
$variables['layout'] = ($variables['layout'] == 'first') ? 'both' : 'second';
|
2562 |
|
|
}
|
2563 |
|
|
|
2564 |
|
|
$variables['base_path'] = base_path();
|
2565 |
|
|
$variables['front_page'] = url();
|
2566 |
|
|
$variables['feed_icons'] = drupal_get_feeds();
|
2567 |
|
|
$variables['language'] = $GLOBALS['language'];
|
2568 |
|
|
$variables['language']->dir = $GLOBALS['language']->direction ? 'rtl' : 'ltr';
|
2569 |
|
|
$variables['logo'] = theme_get_setting('logo');
|
2570 |
|
|
$variables['main_menu'] = theme_get_setting('toggle_main_menu') ? menu_main_menu() : array();
|
2571 |
|
|
$variables['secondary_menu'] = theme_get_setting('toggle_secondary_menu') ? menu_secondary_menu() : array();
|
2572 |
|
|
$variables['action_links'] = menu_local_actions();
|
2573 |
|
|
$variables['site_name'] = (theme_get_setting('toggle_name') ? filter_xss_admin(variable_get('site_name', 'Drupal')) : '');
|
2574 |
|
|
$variables['site_slogan'] = (theme_get_setting('toggle_slogan') ? filter_xss_admin(variable_get('site_slogan', '')) : '');
|
2575 |
|
|
$variables['tabs'] = menu_local_tabs();
|
2576 |
|
|
|
2577 |
|
|
if ($node = menu_get_object()) {
|
2578 |
|
|
$variables['node'] = $node;
|
2579 |
|
|
}
|
2580 |
|
|
|
2581 |
|
|
// Populate the page template suggestions.
|
2582 |
|
|
if ($suggestions = theme_get_suggestions(arg(), 'page')) {
|
2583 |
|
|
$variables['theme_hook_suggestions'] = $suggestions;
|
2584 |
|
|
}
|
2585 |
|
|
}
|
2586 |
|
|
|
2587 |
|
|
/**
|
2588 |
|
|
* Process variables for page.tpl.php
|
2589 |
|
|
*
|
2590 |
|
|
* Perform final addition of variables before passing them into the template.
|
2591 |
|
|
* To customize these variables, simply set them in an earlier step.
|
2592 |
|
|
*
|
2593 |
|
|
* @see template_preprocess_page()
|
2594 |
|
|
* @see page.tpl.php
|
2595 |
|
|
*/
|
2596 |
|
|
function template_process_page(&$variables) {
|
2597 |
|
|
if (!isset($variables['breadcrumb'])) {
|
2598 |
|
|
// Build the breadcrumb last, so as to increase the chance of being able to
|
2599 |
|
|
// re-use the cache of an already rendered menu containing the active link
|
2600 |
|
|
// for the current page.
|
2601 |
|
|
// @see menu_tree_page_data()
|
2602 |
|
|
$variables['breadcrumb'] = theme('breadcrumb', array('breadcrumb' => drupal_get_breadcrumb()));
|
2603 |
|
|
}
|
2604 |
|
|
if (!isset($variables['title'])) {
|
2605 |
|
|
$variables['title'] = drupal_get_title();
|
2606 |
|
|
}
|
2607 |
|
|
|
2608 |
|
|
// Generate messages last in order to capture as many as possible for the
|
2609 |
|
|
// current page.
|
2610 |
|
|
if (!isset($variables['messages'])) {
|
2611 |
|
|
$variables['messages'] = $variables['show_messages'] ? theme('status_messages') : '';
|
2612 |
|
|
}
|
2613 |
|
|
}
|
2614 |
|
|
|
2615 |
|
|
/**
|
2616 |
|
|
* Process variables for html.tpl.php
|
2617 |
|
|
*
|
2618 |
|
|
* Perform final addition and modification of variables before passing into
|
2619 |
|
|
* the template. To customize these variables, call drupal_render() on elements
|
2620 |
|
|
* in $variables['page'] during THEME_preprocess_page().
|
2621 |
|
|
*
|
2622 |
|
|
* @see template_preprocess_html()
|
2623 |
|
|
* @see html.tpl.php
|
2624 |
|
|
*/
|
2625 |
|
|
function template_process_html(&$variables) {
|
2626 |
|
|
// Render page_top and page_bottom into top level variables.
|
2627 |
|
|
$variables['page_top'] = drupal_render($variables['page']['page_top']);
|
2628 |
|
|
$variables['page_bottom'] = drupal_render($variables['page']['page_bottom']);
|
2629 |
|
|
// Place the rendered HTML for the page body into a top level variable.
|
2630 |
|
|
$variables['page'] = $variables['page']['#children'];
|
2631 |
|
|
$variables['page_bottom'] .= drupal_get_js('footer');
|
2632 |
|
|
|
2633 |
|
|
$variables['head'] = drupal_get_html_head();
|
2634 |
|
|
$variables['css'] = drupal_add_css();
|
2635 |
|
|
$variables['styles'] = drupal_get_css();
|
2636 |
|
|
$variables['scripts'] = drupal_get_js();
|
2637 |
|
|
}
|
2638 |
|
|
|
2639 |
|
|
/**
|
2640 |
|
|
* Generate an array of suggestions from path arguments.
|
2641 |
|
|
*
|
2642 |
|
|
* This is typically called for adding to the 'theme_hook_suggestions' or
|
2643 |
|
|
* 'classes_array' variables from within preprocess functions, when wanting to
|
2644 |
|
|
* base the additional suggestions on the path of the current page.
|
2645 |
|
|
*
|
2646 |
|
|
* @param $args
|
2647 |
|
|
* An array of path arguments, such as from function arg().
|
2648 |
|
|
* @param $base
|
2649 |
|
|
* A string identifying the base 'thing' from which more specific suggestions
|
2650 |
|
|
* are derived. For example, 'page' or 'html'.
|
2651 |
|
|
* @param $delimiter
|
2652 |
|
|
* The string used to delimit increasingly specific information. The default
|
2653 |
|
|
* of '__' is appropriate for theme hook suggestions. '-' is appropriate for
|
2654 |
|
|
* extra classes.
|
2655 |
|
|
*
|
2656 |
|
|
* @return
|
2657 |
|
|
* An array of suggestions, suitable for adding to
|
2658 |
|
|
* $variables['theme_hook_suggestions'] within a preprocess function or to
|
2659 |
|
|
* $variables['classes_array'] if the suggestions represent extra CSS classes.
|
2660 |
|
|
*/
|
2661 |
|
|
function theme_get_suggestions($args, $base, $delimiter = '__') {
|
2662 |
|
|
|
2663 |
|
|
// Build a list of suggested theme hooks or body classes in order of
|
2664 |
|
|
// specificity. One suggestion is made for every element of the current path,
|
2665 |
|
|
// though numeric elements are not carried to subsequent suggestions. For
|
2666 |
|
|
// example, for $base='page', http://www.example.com/node/1/edit would result
|
2667 |
|
|
// in the following suggestions and body classes:
|
2668 |
|
|
//
|
2669 |
|
|
// page__node page-node
|
2670 |
|
|
// page__node__% page-node-%
|
2671 |
|
|
// page__node__1 page-node-1
|
2672 |
|
|
// page__node__edit page-node-edit
|
2673 |
|
|
|
2674 |
|
|
$suggestions = array();
|
2675 |
|
|
$prefix = $base;
|
2676 |
|
|
foreach ($args as $arg) {
|
2677 |
|
|
// Remove slashes or null per SA-CORE-2009-003 and change - (hyphen) to _
|
2678 |
|
|
// (underscore).
|
2679 |
|
|
//
|
2680 |
|
|
// When we discover templates in @see drupal_find_theme_templates,
|
2681 |
|
|
// hyphens (-) are converted to underscores (_) before the theme hook
|
2682 |
|
|
// is registered. We do this because the hyphens used for delimiters
|
2683 |
|
|
// in hook suggestions cannot be used in the function names of the
|
2684 |
|
|
// associated preprocess functions. Any page templates designed to be used
|
2685 |
|
|
// on paths that contain a hyphen are also registered with these hyphens
|
2686 |
|
|
// converted to underscores so here we must convert any hyphens in path
|
2687 |
|
|
// arguments to underscores here before fetching theme hook suggestions
|
2688 |
|
|
// to ensure the templates are appropriately recognized.
|
2689 |
|
|
$arg = str_replace(array("/", "\\", "\0", '-'), array('', '', '', '_'), $arg);
|
2690 |
|
|
// The percent acts as a wildcard for numeric arguments since
|
2691 |
|
|
// asterisks are not valid filename characters on many filesystems.
|
2692 |
|
|
if (is_numeric($arg)) {
|
2693 |
|
|
$suggestions[] = $prefix . $delimiter . '%';
|
2694 |
|
|
}
|
2695 |
|
|
$suggestions[] = $prefix . $delimiter . $arg;
|
2696 |
|
|
if (!is_numeric($arg)) {
|
2697 |
|
|
$prefix .= $delimiter . $arg;
|
2698 |
|
|
}
|
2699 |
|
|
}
|
2700 |
|
|
if (drupal_is_front_page()) {
|
2701 |
|
|
// Front templates should be based on root only, not prefixed arguments.
|
2702 |
|
|
$suggestions[] = $base . $delimiter . 'front';
|
2703 |
|
|
}
|
2704 |
|
|
|
2705 |
|
|
return $suggestions;
|
2706 |
|
|
}
|
2707 |
|
|
|
2708 |
|
|
/**
|
2709 |
|
|
* Process variables for maintenance-page.tpl.php.
|
2710 |
|
|
*
|
2711 |
|
|
* The variables array generated here is a mirror of
|
2712 |
|
|
* template_preprocess_page(). This preprocessor will run its course when
|
2713 |
|
|
* theme_maintenance_page() is invoked. An alternate template file of
|
2714 |
|
|
* maintenance-page--offline.tpl.php can be used when the database is offline to
|
2715 |
|
|
* hide errors and completely replace the content.
|
2716 |
|
|
*
|
2717 |
|
|
* The $variables array contains the following arguments:
|
2718 |
|
|
* - $content
|
2719 |
|
|
*
|
2720 |
|
|
* @see maintenance-page.tpl.php
|
2721 |
|
|
*/
|
2722 |
|
|
function template_preprocess_maintenance_page(&$variables) {
|
2723 |
|
|
// Add favicon
|
2724 |
|
|
if (theme_get_setting('toggle_favicon')) {
|
2725 |
|
|
$favicon = theme_get_setting('favicon');
|
2726 |
|
|
$type = theme_get_setting('favicon_mimetype');
|
2727 |
|
|
drupal_add_html_head_link(array('rel' => 'shortcut icon', 'href' => drupal_strip_dangerous_protocols($favicon), 'type' => $type));
|
2728 |
|
|
}
|
2729 |
|
|
|
2730 |
|
|
global $theme;
|
2731 |
|
|
// Retrieve the theme data to list all available regions.
|
2732 |
|
|
$theme_data = list_themes();
|
2733 |
|
|
$regions = $theme_data[$theme]->info['regions'];
|
2734 |
|
|
|
2735 |
|
|
// Get all region content set with drupal_add_region_content().
|
2736 |
|
|
foreach (array_keys($regions) as $region) {
|
2737 |
|
|
// Assign region to a region variable.
|
2738 |
|
|
$region_content = drupal_get_region_content($region);
|
2739 |
|
|
isset($variables[$region]) ? $variables[$region] .= $region_content : $variables[$region] = $region_content;
|
2740 |
|
|
}
|
2741 |
|
|
|
2742 |
|
|
// Setup layout variable.
|
2743 |
|
|
$variables['layout'] = 'none';
|
2744 |
|
|
if (!empty($variables['sidebar_first'])) {
|
2745 |
|
|
$variables['layout'] = 'first';
|
2746 |
|
|
}
|
2747 |
|
|
if (!empty($variables['sidebar_second'])) {
|
2748 |
|
|
$variables['layout'] = ($variables['layout'] == 'first') ? 'both' : 'second';
|
2749 |
|
|
}
|
2750 |
|
|
|
2751 |
|
|
// Construct page title
|
2752 |
|
|
if (drupal_get_title()) {
|
2753 |
|
|
$head_title = array(
|
2754 |
|
|
'title' => strip_tags(drupal_get_title()),
|
2755 |
|
|
'name' => variable_get('site_name', 'Drupal'),
|
2756 |
|
|
);
|
2757 |
|
|
}
|
2758 |
|
|
else {
|
2759 |
|
|
$head_title = array('name' => variable_get('site_name', 'Drupal'));
|
2760 |
|
|
if (variable_get('site_slogan', '')) {
|
2761 |
|
|
$head_title['slogan'] = variable_get('site_slogan', '');
|
2762 |
|
|
}
|
2763 |
|
|
}
|
2764 |
|
|
|
2765 |
|
|
// set the default language if necessary
|
2766 |
|
|
$language = isset($GLOBALS['language']) ? $GLOBALS['language'] : language_default();
|
2767 |
|
|
|
2768 |
|
|
$variables['head_title_array'] = $head_title;
|
2769 |
|
|
$variables['head_title'] = implode(' | ', $head_title);
|
2770 |
|
|
$variables['base_path'] = base_path();
|
2771 |
|
|
$variables['front_page'] = url();
|
2772 |
|
|
$variables['breadcrumb'] = '';
|
2773 |
|
|
$variables['feed_icons'] = '';
|
2774 |
|
|
$variables['help'] = '';
|
2775 |
|
|
$variables['language'] = $language;
|
2776 |
|
|
$variables['language']->dir = $language->direction ? 'rtl' : 'ltr';
|
2777 |
|
|
$variables['logo'] = theme_get_setting('logo');
|
2778 |
|
|
$variables['messages'] = $variables['show_messages'] ? theme('status_messages') : '';
|
2779 |
|
|
$variables['main_menu'] = array();
|
2780 |
|
|
$variables['secondary_menu'] = array();
|
2781 |
|
|
$variables['site_name'] = (theme_get_setting('toggle_name') ? variable_get('site_name', 'Drupal') : '');
|
2782 |
|
|
$variables['site_slogan'] = (theme_get_setting('toggle_slogan') ? variable_get('site_slogan', '') : '');
|
2783 |
|
|
$variables['tabs'] = '';
|
2784 |
|
|
$variables['title'] = drupal_get_title();
|
2785 |
|
|
|
2786 |
|
|
// Compile a list of classes that are going to be applied to the body element.
|
2787 |
|
|
$variables['classes_array'][] = 'in-maintenance';
|
2788 |
|
|
if (isset($variables['db_is_active']) && !$variables['db_is_active']) {
|
2789 |
|
|
$variables['classes_array'][] = 'db-offline';
|
2790 |
|
|
}
|
2791 |
|
|
if ($variables['layout'] == 'both') {
|
2792 |
|
|
$variables['classes_array'][] = 'two-sidebars';
|
2793 |
|
|
}
|
2794 |
|
|
elseif ($variables['layout'] == 'none') {
|
2795 |
|
|
$variables['classes_array'][] = 'no-sidebars';
|
2796 |
|
|
}
|
2797 |
|
|
else {
|
2798 |
|
|
$variables['classes_array'][] = 'one-sidebar sidebar-' . $variables['layout'];
|
2799 |
|
|
}
|
2800 |
|
|
|
2801 |
|
|
// Dead databases will show error messages so supplying this template will
|
2802 |
|
|
// allow themers to override the page and the content completely.
|
2803 |
|
|
if (isset($variables['db_is_active']) && !$variables['db_is_active']) {
|
2804 |
|
|
$variables['theme_hook_suggestion'] = 'maintenance_page__offline';
|
2805 |
|
|
}
|
2806 |
|
|
}
|
2807 |
|
|
|
2808 |
|
|
/**
|
2809 |
|
|
* Theme process function for theme_maintenance_field().
|
2810 |
|
|
*
|
2811 |
|
|
* The variables array generated here is a mirror of template_process_html().
|
2812 |
|
|
* This processor will run its course when theme_maintenance_page() is invoked.
|
2813 |
|
|
*
|
2814 |
|
|
* @see maintenance-page.tpl.php
|
2815 |
|
|
* @see template_process_html()
|
2816 |
|
|
*/
|
2817 |
|
|
function template_process_maintenance_page(&$variables) {
|
2818 |
|
|
$variables['head'] = drupal_get_html_head();
|
2819 |
|
|
$variables['css'] = drupal_add_css();
|
2820 |
|
|
$variables['styles'] = drupal_get_css();
|
2821 |
|
|
$variables['scripts'] = drupal_get_js();
|
2822 |
|
|
}
|
2823 |
|
|
|
2824 |
|
|
/**
|
2825 |
|
|
* Preprocess variables for region.tpl.php
|
2826 |
|
|
*
|
2827 |
|
|
* Prepares the values passed to the theme_region function to be passed into a
|
2828 |
|
|
* pluggable template engine. Uses the region name to generate a template file
|
2829 |
|
|
* suggestions. If none are found, the default region.tpl.php is used.
|
2830 |
|
|
*
|
2831 |
|
|
* @see drupal_region_class()
|
2832 |
|
|
* @see region.tpl.php
|
2833 |
|
|
*/
|
2834 |
|
|
function template_preprocess_region(&$variables) {
|
2835 |
|
|
// Create the $content variable that templates expect.
|
2836 |
|
|
$variables['content'] = $variables['elements']['#children'];
|
2837 |
|
|
$variables['region'] = $variables['elements']['#region'];
|
2838 |
|
|
|
2839 |
|
|
$variables['classes_array'][] = drupal_region_class($variables['region']);
|
2840 |
|
|
$variables['theme_hook_suggestions'][] = 'region__' . $variables['region'];
|
2841 |
|
|
}
|
2842 |
|
|
|
2843 |
|
|
/**
|
2844 |
|
|
* Preprocesses variables for theme_username().
|
2845 |
|
|
*
|
2846 |
|
|
* Modules that make any changes to variables like 'name' or 'extra' must insure
|
2847 |
|
|
* that the final string is safe to include directly in the output by using
|
2848 |
|
|
* check_plain() or filter_xss().
|
2849 |
|
|
*
|
2850 |
|
|
* @see template_process_username()
|
2851 |
|
|
*/
|
2852 |
|
|
function template_preprocess_username(&$variables) {
|
2853 |
|
|
$account = $variables['account'];
|
2854 |
|
|
|
2855 |
|
|
$variables['extra'] = '';
|
2856 |
|
|
if (empty($account->uid)) {
|
2857 |
|
|
$variables['uid'] = 0;
|
2858 |
|
|
if (theme_get_setting('toggle_comment_user_verification')) {
|
2859 |
|
|
$variables['extra'] = ' (' . t('not verified') . ')';
|
2860 |
|
|
}
|
2861 |
|
|
}
|
2862 |
|
|
else {
|
2863 |
|
|
$variables['uid'] = (int) $account->uid;
|
2864 |
|
|
}
|
2865 |
|
|
|
2866 |
|
|
// Set the name to a formatted name that is safe for printing and
|
2867 |
|
|
// that won't break tables by being too long. Keep an unshortened,
|
2868 |
|
|
// unsanitized version, in case other preprocess functions want to implement
|
2869 |
|
|
// their own shortening logic or add markup. If they do so, they must ensure
|
2870 |
|
|
// that $variables['name'] is safe for printing.
|
2871 |
|
|
$name = $variables['name_raw'] = format_username($account);
|
2872 |
|
|
if (drupal_strlen($name) > 20) {
|
2873 |
|
|
$name = drupal_substr($name, 0, 15) . '...';
|
2874 |
|
|
}
|
2875 |
|
|
$variables['name'] = check_plain($name);
|
2876 |
|
|
|
2877 |
|
|
$variables['profile_access'] = user_access('access user profiles');
|
2878 |
|
|
$variables['link_attributes'] = array();
|
2879 |
|
|
// Populate link path and attributes if appropriate.
|
2880 |
|
|
if ($variables['uid'] && $variables['profile_access']) {
|
2881 |
|
|
// We are linking to a local user.
|
2882 |
|
|
$variables['link_attributes'] = array('title' => t('View user profile.'));
|
2883 |
|
|
$variables['link_path'] = 'user/' . $variables['uid'];
|
2884 |
|
|
}
|
2885 |
|
|
elseif (!empty($account->homepage)) {
|
2886 |
|
|
// Like the 'class' attribute, the 'rel' attribute can hold a
|
2887 |
|
|
// space-separated set of values, so initialize it as an array to make it
|
2888 |
|
|
// easier for other preprocess functions to append to it.
|
2889 |
|
|
$variables['link_attributes'] = array('rel' => array('nofollow'));
|
2890 |
|
|
$variables['link_path'] = $account->homepage;
|
2891 |
|
|
$variables['homepage'] = $account->homepage;
|
2892 |
|
|
}
|
2893 |
|
|
// We do not want the l() function to check_plain() a second time.
|
2894 |
|
|
$variables['link_options']['html'] = TRUE;
|
2895 |
|
|
// Set a default class.
|
2896 |
|
|
$variables['attributes_array'] = array('class' => array('username'));
|
2897 |
|
|
}
|
2898 |
|
|
|
2899 |
|
|
/**
|
2900 |
|
|
* Processes variables for theme_username().
|
2901 |
|
|
*
|
2902 |
|
|
* @see template_preprocess_username()
|
2903 |
|
|
*/
|
2904 |
|
|
function template_process_username(&$variables) {
|
2905 |
|
|
// Finalize the link_options array for passing to the l() function.
|
2906 |
|
|
// This is done in the process phase so that attributes may be added by
|
2907 |
|
|
// modules or the theme during the preprocess phase.
|
2908 |
|
|
if (isset($variables['link_path'])) {
|
2909 |
|
|
// $variables['attributes_array'] contains attributes that should be applied
|
2910 |
|
|
// regardless of whether a link is being rendered or not.
|
2911 |
|
|
// $variables['link_attributes'] contains attributes that should only be
|
2912 |
|
|
// applied if a link is being rendered. Preprocess functions are encouraged
|
2913 |
|
|
// to use the former unless they want to add attributes on the link only.
|
2914 |
|
|
// If a link is being rendered, these need to be merged. Some attributes are
|
2915 |
|
|
// themselves arrays, so the merging needs to be recursive.
|
2916 |
|
|
$variables['link_options']['attributes'] = array_merge_recursive($variables['link_attributes'], $variables['attributes_array']);
|
2917 |
|
|
}
|
2918 |
|
|
} |