2020-08-06 11:08:10 +02:00
|
|
|
<?PHP
|
|
|
|
/**
|
|
|
|
* Contains a class for controlling the list of available units.
|
|
|
|
*
|
|
|
|
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
|
|
|
|
*/
|
2020-08-07 00:12:49 +02:00
|
|
|
declare(strict_types = 1);
|
2020-08-06 11:08:10 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class containing available units for weights, lengths etc.
|
|
|
|
*/
|
|
|
|
class MDUnitsSet {
|
|
|
|
|
|
|
|
const UNITS_LENGTH = ['', 'm', 'dm', 'cm', 'mm'];
|
|
|
|
const UNITS_WEIGHT = ['', 't', 'kg', 'g'];
|
|
|
|
|
|
|
|
}
|