You are here

function environment_environment in Environment 6

Same name and namespace in other branches
  1. 7 environment.module \environment_environment()

Implementation of hook_environment().

File

./environment.module, line 53

Code

function environment_environment() {
  return array(
    'production' => array(
      'label' => t('Production'),
      'allowed' => array(
        'default' => TRUE,
      ),
    ),
    'development' => array(
      'label' => t('Development'),
      'allowed' => array(
        'default' => FALSE,
      ),
    ),
  );
}