You are here

function xautoload_system_theme_info in X Autoload 7.5

Implements hook_system_theme_info().

This is the first hook to fire on update.php.

Unfortunately, hook_custom_theme() and hook_init() are not called on update.php in _drupal_bootstrap_full().

But in list_themes(), _system_rebuild_theme_data() is always called in maintenance mode. And from there, hook_system_theme_info().

See also

_drupal_bootstrap_full()

list_themes()

File

./xautoload.module, line 69

Code

function xautoload_system_theme_info() {
  xautoload()->phaseControl
    ->enterMainPhase();
}