You are here

interface xautoload_BootSchedule_Interface in X Autoload 7.3

Hierarchy

Expanded class hierarchy of xautoload_BootSchedule_Interface

All classes that implement xautoload_BootSchedule_Interface

File

lib/BootSchedule/Interface.php, line 3

View source
interface xautoload_BootSchedule_Interface {

  /**
   * Init the phase where the database is available,
   * and register the namespaces and prefixes for all modules.
   */
  function initBootstrapPhase();

  /**
   * Init the phase where all *.module files are loaded,
   * and run hook_xautoload() on all modules that implement it.
   */
  function initMainPhase();

  /**
   * Add modules after they have been enabled or installed.
   *
   * @param array $modules
   *   Array of module names, with numeric keys.
   */
  function modulesInstalledOrEnabled(array $modules);

}

Members

Namesort descending Modifiers Type Description Overrides
xautoload_BootSchedule_Interface::initBootstrapPhase function Init the phase where the database is available, and register the namespaces and prefixes for all modules. 2
xautoload_BootSchedule_Interface::initMainPhase function Init the phase where all *.module files are loaded, and run hook_xautoload() on all modules that implement it. 2
xautoload_BootSchedule_Interface::modulesInstalledOrEnabled function Add modules after they have been enabled or installed. 2