castopod/themes/cp_admin/plugins/settings_podcast.php
2024-05-02 15:32:27 +00:00

23 lines
600 B
PHP

<?= $this->extend('_layout') ?>
<?= $this->section('title') ?>
<?= lang('Plugins.settings', [
'pluginName' => $plugin->getName(),
]) ?>
<?= $this->endSection() ?>
<?= $this->section('pageTitle') ?>
<?= lang('Plugins.settings', [
'pluginName' => $plugin->getName(),
]) ?>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<?= view('plugins/_settings', [
'plugin' => $plugin,
'action' => route_to('plugins-podcast-settings-action', $podcast->id, $plugin->getKey()),
'type' => 'podcast',
'context' => ['podcast', $podcast->id],
]) ?>
<?= $this->endSection() ?>