Файл: concrete5.7.5.6/concrete/blocks/page_attribute_display/templates/date_time.php
Строк: 20
<?php
defined('C5_EXECUTE') or die('Access Denied.');
$dh = Core::make('helper/date'); /* @var $dh ConcreteCoreLocalizationServiceDate */
echo $this->controller->getOpenTag();
echo $this->controller->getTitle();
try {
$format = (strlen($this->controller->dateFormat) ? $this->controller->dateFormat : "m/d/y");
echo $dh->formatCustom($format, $this->controller->getContent());
} catch (Exception $e) {
print $this->controller->getContent();
}
echo $this->controller->getCloseTag();