Файл: concrete5.7.5.6/concrete/blocks/core_area_layout/templates/parallax/view.php
Строк: 22
<?php defined('C5_EXECUTE') or die("Access Denied.");
$a = $b->getBlockAreaObject();
$container = $formatter->getLayoutContainerHtmlObject();
$background = '';
$style = $b->getCustomStyle();
if (is_object($style)) {
$set = $style->getStyleSet();
$image = $set->getBackgroundImageFileObject();
if (is_object($image)) {
$background = $image->getRelativePath();
}
}
?>
<div data-stripe-wrapper="parallax" data-background-image="<?php echo $background ?>">
<?php
foreach ($columns as $column) {
$html = $column->getColumnHtmlObject();
$container->appendChild($html);
}
print $container;
?>
</div>