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