Это для внутреннего использования в теме Zen, прочтите комментарии, пожалуйста, в файлах, для чего они.
Например, около template.conditional-styles.inc :
// Код для условного
таблицы стилей начинались как патч для
Zen. Теперь, когда
// это было раскручено
в отдельный модуль,
было бы неплохо предотвратить
// код
дрейф между реализацией дзен
и
conditional_styles.module,
// так
Дзен теперь включает в себя точную копию
Модуль conditonal_style:
//
conditional_styles.theme.inc, v 1.4
2008/09/14 23:26:47 johnalbin Exp
Он будет включен в template.theme-registry.inc файл через этот код:
function _zen_theme(&$existing, $type, $theme, $path) {
// Compute the conditional stylesheets.
if (!module_exists('conditional_styles')) {
include_once './' . drupal_get_path('theme', 'zen') . '/template.conditional-styles.inc';
// _conditional_styles_theme() only needs to be run once.
if ($theme == 'zen') {
_conditional_styles_theme($existing, $type, $theme, $path);
}
}
_zen_theme будет включен в template.php :
/**
* Implements HOOK_theme().
*/
function zen_theme(&$existing, $type, $theme, $path) {
...
include_once './' . drupal_get_path('theme', 'zen') . '/template.theme-registry.inc';
Читать о hook_theme .