PluginProbe
M Chart / 1.0
M Chart v1.0
2.3.2 2.3.1 2.3 2.2.2 2.2.1 2.2 trunk 1.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.10 1.10.1 1.11 1.11.1 1.11.2 1.12 1.2 1.2.1 1.3 1.3.1 1.3.2 All 53 releases
m-chart / components / array-default-unit-terms.php

array-default-unit-terms.php in M Chart 1.0, at components/array-default-unit-terms.php

51 lines 611 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * An array of unit terms to generate for the user
5 */
6
7 return array(
8 'Time' => array(
9 'Seconds',
10 'Minutes',
11 'Hours',
12 'Days',
13 'Weeks',
14 'Months',
15 'Quarter',
16 'Years',
17 'Decades',
18 'Centuries',
19 ),
20 'Money' => array(
21 'USD',
22 'GBP',
23 'JPY',
24 'CNY',
25 ),
26 'Length' => array(
27 'Inch',
28 'Foot',
29 'Yard',
30 'Mile',
31 'Millimeter',
32 'Centimeter',
33 'Meter',
34 'Kilometer',
35 ),
36 'Other' => array(
37 'Percent',
38 ),
39 'Website/Traffic' => array(
40 'Visitors',
41 'Unique Visitors',
42 'Clicks',
43 'Referrers',
44 'Active Users',
45 'Pages',
46 ),
47 'Sales' => array(
48 'Units',
49 'CPM',
50 ),
51 );