Jump to main content Jump to doc navigation

modX::initialize

Initializes MODX engine into a Context.

This includes preparing the session, pre-loading some common classes and objects, the current site and context settings, extension packages used to override session handling, error handling, or other initialization classes.

Syntax

API Doc: modX::initialize()

void initialize ([string $contextKey = 'web'], [$options = null])
  • $contextKey (string) Indicates the context to initialize
  • $options (string) An array of options for the initialization.

Example

Initialize the 'sports' Context.

$modx->initialize('sports');

See Also