Skip to content
Snippets Groups Projects
Commit b4a3ab6f authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

add more font sizes, CRM-13329

----------------------------------------
* CRM-13329: Add 2 more rows to the Badge Layout form (for a total of 6 rows)
  http://issues.civicrm.org/jira/browse/CRM-13329
parent 8b5dac1e
Branches
Tags
No related merge requests found
......@@ -194,27 +194,12 @@ class CRM_Core_BAO_LabelFormat extends CRM_Core_DAO_OptionValue {
* @static
*/
public static function getFontSizes() {
return array(
6 => ts('6 pt'),
7 => ts('7 pt'),
8 => ts('8 pt'),
9 => ts('9 pt'),
10 => ts('10 pt'),
11 => ts('11 pt'),
12 => ts('12 pt'),
13 => ts('13 pt'),
14 => ts('14 pt'),
15 => ts('15 pt'),
16 => ts('16 pt'),
17 => ts('17 pt'),
18 => ts('18 pt'),
19 => ts('19 pt'),
20 => ts('20 pt'),
21 => ts('21 pt'),
22 => ts('22 pt'),
23 => ts('23 pt'),
24 => ts('24 pt'),
);
$fontSizes = array();
for ($i=6; $i<=60; $i++) {
$fontSizes[$i] = ts('%1 pt', $i);
}
return $fontSizes;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment