Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
currencylistitems.php
1<?php
2
4
7
8trait CurrencyListItems
9{
10 private function getCurrencyListItems(): array
11 {
12 if (Loader::includeModule('currency'))
13 {
14 return CurrencyManager::getNameList();
15 }
16
17 return [];
18 }
19}