function dimension_get_modes_select in Dimension 7
1 call to dimension_get_modes_select()
- dimension_field_settings_form in ./
dimension.module - Implements hook_field_settings_form().
File
- ./
dimension.module, line 422
Code
function dimension_get_modes_select() {
return array(
DIMENSION_MODE_LENGTH => t('Length'),
DIMENSION_MODE_AREA => t('Width and Height'),
DIMENSION_MODE_VOLUME => t('Width, Height and Depth'),
);
}