Mercurial > defr > drupal > core
comparison modules/system/system.module @ 9:acef7ccb09b5 6.4
Drupal 6.4
author | Franck Deroche <webmaster@defr.org> |
---|---|
date | Tue, 23 Dec 2008 14:32:08 +0100 |
parents | fff6d4c8c043 |
children | 589fb7c02327 |
comparison
equal
deleted
inserted
replaced
8:85cbd6048071 | 9:acef7ccb09b5 |
---|---|
1 <?php | 1 <?php |
2 // $Id: system.module,v 1.585.2.13 2008/07/09 21:48:28 goba Exp $ | 2 // $Id: system.module,v 1.585.2.16 2008/08/13 23:59:13 drumm Exp $ |
3 | 3 |
4 /** | 4 /** |
5 * @file | 5 * @file |
6 * Configuration system that lets administrators modify the workings of the site. | 6 * Configuration system that lets administrators modify the workings of the site. |
7 */ | 7 */ |
8 | 8 |
9 /** | 9 /** |
10 * The current system version. | 10 * The current system version. |
11 */ | 11 */ |
12 define('VERSION', '6.3'); | 12 define('VERSION', '6.4'); |
13 | 13 |
14 /** | 14 /** |
15 * Core API compatibility. | 15 * Core API compatibility. |
16 */ | 16 */ |
17 define('DRUPAL_CORE_COMPATIBILITY', '6.x'); | 17 define('DRUPAL_CORE_COMPATIBILITY', '6.x'); |
840 * An associative array of themes information. | 840 * An associative array of themes information. |
841 */ | 841 */ |
842 function _system_theme_data() { | 842 function _system_theme_data() { |
843 static $themes_info = array(); | 843 static $themes_info = array(); |
844 | 844 |
845 if (empty($theme_info)) { | 845 if (empty($themes_info)) { |
846 // Find themes | 846 // Find themes |
847 $themes = drupal_system_listing('\.info$', 'themes'); | 847 $themes = drupal_system_listing('\.info$', 'themes'); |
848 // Find theme engines | 848 // Find theme engines |
849 $engines = drupal_system_listing('\.engine$', 'themes/engines'); | 849 $engines = drupal_system_listing('\.engine$', 'themes/engines'); |
850 | 850 |