AzuraCast/templates/partials/station_form.phtml

19 lines
358 B
PHTML

<?php
/**
* @var string|null $title
* @var string|null $header
* @var \App\Assets $assets
* @var \App\Form\StationForm $form
*/
$assets->addInlineJs($this->fetch('partials/station_form.js'), 99);
echo $this->fetch(
'system/form_page',
[
'title' => $title ?? null,
'header' => $header ?? null,
'form' => $form,
]
);