mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-15 09:57:28 +01:00
11 lines
181 B
PHP
11 lines
181 B
PHP
|
<?php
|
||
|
|
||
|
include_once __DIR__.'/../../core.php';
|
||
|
|
||
|
use Models\PrintTemplate;
|
||
|
|
||
|
if (isset($id_record)) {
|
||
|
$print = PrintTemplate::find($id_record);
|
||
|
$record = $print->toArray();
|
||
|
}
|