theme.inc

  1. Views
    1. 6 theme/theme.inc
    2. 7 theme/theme.inc
  2. drupal
    1. 4.6 includes/theme.inc
    2. 4.7 includes/theme.inc
    3. 5 includes/theme.inc
    4. 6 includes/theme.inc
    5. 7 includes/theme.inc
    6. 8 core/includes/theme.inc

The theme system, which controls the output of Drupal.

The theme system allows for nearly all output of the Drupal system to be customized by user themes.

Functions & methods

NameDescription
drupal_find_theme_functionsAllow themes and/or theme engines to easily discover overridden theme functions.
drupal_find_theme_templatesAllow themes and/or theme engines to easily discover overridden templates.
drupal_theme_accessDetermines if a theme is available to use.
drupal_theme_initializeInitialize the theme system by loading the theme.
drupal_theme_rebuildForce the system to rebuild the theme registry; this should be called when modules are added to the system, or when a dynamic system needs to add more theme hooks.
list_themesReturn a list of all currently available themes.
path_to_themeReturn the path to the current themed element.
template_preprocessAdds a default set of helper variables for variable processors and templates. This comes in before any other preprocess function which makes it possible to be used in default theme implementations (non-overridden theme functions).
template_preprocess_htmlPreprocess variables for html.tpl.php
template_preprocess_maintenance_pageThe variables array generated here is a mirror of template_preprocess_page(). This preprocessor will run its course when theme_maintenance_page() is invoked.
template_preprocess_pagePreprocess variables for page.tpl.php
template_preprocess_regionPreprocess variables for region.tpl.php
template_preprocess_usernamePreprocesses variables for theme_username().
template_processA default process function used to alter variables as late as possible.
template_process_htmlProcess variables for html.tpl.php
template_process_maintenance_pageThe variables array generated here is a mirror of template_process_html(). This processor will run its course when theme_maintenance_page() is invoked.
template_process_pageProcess variables for page.tpl.php
template_process_usernameProcesses variables for theme_username().
themeGenerates themed output.
theme_breadcrumbReturns HTML for a breadcrumb trail.
theme_disableDisable a given list of themes.
theme_enableEnable a given list of themes.
theme_feed_iconReturns HTML for a feed icon.
theme_get_registryGet the theme registry.
theme_get_settingRetrieve a setting for the current theme or for a given theme.
theme_get_suggestionsGenerate an array of suggestions from path arguments.
theme_html_tagReturns HTML for a generic HTML tag with attributes.
theme_imageReturns HTML for an image.
theme_indentationReturns HTML for an indentation div; used for drag and drop tables.
theme_item_listReturns HTML for a list or nested list of items.
theme_linkReturns HTML for a link.
theme_linksReturns HTML for a set of links.
theme_markReturns HTML for a marker for new or updated content.
theme_more_help_linkReturns HTML for a "more help" link.
theme_more_linkReturns HTML for a "more" link, like those used in blocks.
theme_progress_barReturns HTML for a progress bar.
theme_render_templateRender a system default template, which is essentially a PHP template.
theme_status_messagesReturns HTML for status and/or error messages, grouped by type.
theme_tableReturns HTML for a table.
theme_tablesort_indicatorReturns HTML for a sort icon.
theme_usernameReturns HTML for a username, potentially linked to the user's page.
_drupal_theme_accessHelper function for determining access to a theme.
_drupal_theme_initializeInitialize the theme system given already loaded information. This function is useful to initialize a theme when no database is present.
_template_preprocess_default_variablesReturns hook-independent variables to template_preprocess().
_theme_build_registryBuild the theme registry cache.
_theme_load_registryGet the theme_registry cache; if it doesn't exist, build it.
_theme_process_registryProcess a single implementation of hook_theme().
_theme_registry_callbackSet the callback that will be used by theme_get_registry() to fetch the registry.
_theme_save_registryWrite the theme_registry cache into the database.
_theme_table_cellReturns HTML output for a single table cell for theme_table().

Constants

NameDescription
MARK_NEWMark content as being new.
MARK_READMark content as read.
MARK_UPDATEDMark content as being updated.

Classes

NameDescription
ThemeRegistryBuilds the run-time theme registry.

File

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