mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-11 01:55:09 +00:00
23 lines
600 B
PHP
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() ?>
|