function environment_environment in Environment 6
Same name and namespace in other branches
- 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,
),
),
);
}