popnoire/site/OFF_plugins/field-engineer/snippets/template.php
2026-02-12 15:22:46 +01:00

21 lines
No EOL
610 B
PHP

<?php if(c::get('engineer.debug', false)) : ?>
<style>
.egr-outline,
.egr-output {
display: block;
}
</style>
<?php endif; ?>
<div class="egr">
<div class="egr-outline">
<?php echo egr::snippet('delete'); ?>
<?php echo egr::snippet('outline', $args['outline']); ?>
</div>
<div class="egr-presentation"><?php echo egr::snippet('presentation', $args['presentation']); ?></div>
<div class="egr-output">
<textarea
name="<?= $args['instance']->name; ?>"
id="form-field-<?= $args['instance']->name; ?>
"><?php echo htmlspecialchars($args['instance']->value); ?></textarea>
</div>
</div>