Система управления «Сайт PRO»
Версия 20240107

block.uikit.php

Блок «Блоки 2022»

Вызывается из:

Исходный код
<?php

$Block = $App->get('block');

$panel = array(
    'edit' => array(
        'href' => $Block->getBlockEditHref($Page, $block),
        'title' => $Main->translate('Редактировать блок'),
        'image' => 'edit',
        'can' => 'block|edit',
    ),
);

print $Main->callTemplate('display', 'panel', $Page, array( 'panel' => $panel, 'redirect' => null ));

if (is_array($block['data'])) print $block['data']['xml'];

?>