oms-Labeling/Theme/Backend/label-render.tpl.php
Dennis Eichhorn 16e043a8b6 update
2023-07-17 01:39:34 +00:00

13 lines
276 B
PHP

<?php
$layout = $this->data['layout'];
$template = \reset($layout->template->sources);
$label = include_once $template->getAbsolutePath();
if (isset($this->data['path'])) {
\imagepng($label->render(), $this->data['path']);
} else {
\imagepng($label->render());
}