mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-10 01:25:10 +00:00
23 lines
614 B
PHP
23 lines
614 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-episode-settings-action', $podcast->id, $episode->id, $plugin->getKey()),
|
||
|
'type' => 'episode',
|
||
|
'context' => ['episode', $episode->id],
|
||
|
]) ?>
|
||
|
<?= $this->endSection() ?>
|