oms-Labeling/Theme/Backend/label-render.tpl.php
Dennis Eichhorn 2251c31b36 continue impl
2023-07-23 03:00:14 +00:00

15 lines
306 B
PHP

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