# m-chart/1.0/components/array-default-unit-terms.php

M Chart, version 1.0. 51 lines.

- Page: https://pluginprobe.com/plugins/m-chart/1.0/code/components/array-default-unit-terms.php
- Raw: https://pluginprobe.com/plugins/m-chart/1.0/raw/components/array-default-unit-terms.php
- Modified: 2015-04-27T18:32:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/m-chart/1.0/code/components/array-default-unit-terms.php#L10-L20`.

```php
<?php

/**
 * An array of unit terms to generate for the user
 */

return array(
	'Time' => array(
		'Seconds',
		'Minutes',
		'Hours',
		'Days',
		'Weeks',
		'Months',
		'Quarter',
		'Years',
		'Decades',
		'Centuries',
	),
	'Money' => array(
		'USD',
		'GBP',
		'JPY',
		'CNY',
	),
	'Length' => array(
		'Inch',
		'Foot',
		'Yard',
		'Mile',
		'Millimeter',
		'Centimeter',
		'Meter',
		'Kilometer',
	),
	'Other' => array(
		'Percent',
	),
	'Website/Traffic' => array(
		'Visitors',
		'Unique Visitors',
		'Clicks',
		'Referrers',
		'Active Users',
		'Pages',
	),
	'Sales' => array(
		'Units',
		'CPM',
	),
);
```
