@@ 122-134 (lines=13) @@ | ||
119 | * |
|
120 | * @return array |
|
121 | */ |
|
122 | public static function getBankGroups() |
|
123 | { |
|
124 | $aReturn = []; |
|
125 | ||
126 | foreach (self::$aBankGroups as $sKey => $sTitle) { |
|
127 | $aReturn[] = [ |
|
128 | 'id' => $sKey, |
|
129 | 'title' => utf8_encode($sTitle), |
|
130 | ]; |
|
131 | } |
|
132 | ||
133 | return $aReturn; |
|
134 | } |
|
135 | } |
|
136 |
@@ 109-121 (lines=13) @@ | ||
106 | * |
|
107 | * @return array |
|
108 | */ |
|
109 | public static function getBankGroups() |
|
110 | { |
|
111 | $aReturn = []; |
|
112 | ||
113 | foreach (self::$aBankGroups as $sKey => $sTitle) { |
|
114 | $aReturn[] = [ |
|
115 | 'id' => $sKey, |
|
116 | 'title' => utf8_encode($sTitle), |
|
117 | ]; |
|
118 | } |
|
119 | ||
120 | return $aReturn; |
|
121 | } |
|
122 | } |
|
123 |