Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
culture.php
1<?php
10
11use Bitrix\Main;
12
13class Culture extends Main\Localization\EO_Culture
14{
15 public function getDateTimeFormat()
16 {
17 return $this->getFormatDatetime();
18 }
19
20 public function getDateFormat()
21 {
22 return $this->getFormatDate();
23 }
24
25 public function getNameFormat()
26 {
27 return $this->getFormatName();
28 }
29}