Добавляем все файлы

This commit is contained in:
2025-11-06 19:41:55 +02:00
parent 235d6a3a18
commit 2e5aaec307
218 changed files with 79015 additions and 0 deletions

17
main_plugin/dgrm/index.php Executable file
View File

@@ -0,0 +1,17 @@
<?php
/**
* @file index.php
* @brief Контейнер для блока схемы
*/
?>
<?php /** @brief Основной контейнер диаграммы */ $dgrmDiv; ?>
<div id="dgrmDiv" class="bfloat">
<div class="btitle" style="background-color: transparent;">Блок схема</div>
<ap-menu id="menu"></ap-menu>
<ap-menu-shape id="menu-shape"></ap-menu-shape>
<div id="tip"></div>
<svg id="diagram" tabindex="0" style="background-position: 0px 0px; touch-action: none; background-color: #fff; display:block; user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; pointer-events: none;">
<g id="canvas" style="transform: matrix(1, 0, 0, 1, 0, 0);"></g>
</svg>
</div>