mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00

- update CI4 to v4.1.9's stable production package - update php and js dependencies to latest
94 lines
3.7 KiB
PHP
94 lines
3.7 KiB
PHP
<?= $this->extend('_layout') ?>
|
||
|
||
<?= $this->section('title') ?>
|
||
<?= lang('Person.podcast_form.title') ?>
|
||
<?= $this->endSection() ?>
|
||
|
||
<?= $this->section('pageTitle') ?>
|
||
<?= lang('Person.podcast_form.title') ?> (<?= count($podcast->persons) ?>)
|
||
<?= $this->endSection() ?>
|
||
|
||
<?= $this->section('headerRight') ?>
|
||
<Button uri="<?= route_to('person-create') ?>" variant="primary" iconLeft="add"><?= lang('Person.create') ?></Button>
|
||
<?= $this->endSection() ?>
|
||
|
||
<?= $this->section('content') ?>
|
||
|
||
<form action="<?= route_to('podcast-persons-manage', $podcast->id) ?>" method="POST" class="max-w-xl">
|
||
<?= csrf_field() ?>
|
||
|
||
<Forms.Section
|
||
title="<?= lang('Person.podcast_form.add_section_title') ?>"
|
||
subtitle="<?= lang('Person.podcast_form.add_section_subtitle') ?>"
|
||
>
|
||
|
||
<Forms.Field
|
||
as="MultiSelect"
|
||
id="persons"
|
||
name="persons[]"
|
||
label="<?= lang('Person.podcast_form.persons') ?>"
|
||
hint="<?= lang('Person.podcast_form.persons_hint') ?>"
|
||
options="<?= esc(json_encode($personOptions)) ?>"
|
||
selected="<?= esc(json_encode(old('persons', []))) ?>"
|
||
required="true" />
|
||
|
||
<Forms.Field
|
||
as="MultiSelect"
|
||
id="roles"
|
||
name="roles[]"
|
||
label="<?= lang('Person.podcast_form.roles') ?>"
|
||
hint="<?= lang('Person.podcast_form.roles_hint') ?>"
|
||
options="<?= esc(json_encode($taxonomyOptions)) ?>"
|
||
selected="<?= esc(json_encode(old('roles', []))) ?>"
|
||
required="true" />
|
||
|
||
<Button variant="primary" class="self-end" type="submit"><?= lang('Person.podcast_form.submit_add') ?></Button>
|
||
|
||
</Forms.Section>
|
||
</form>
|
||
|
||
<?= data_table(
|
||
[
|
||
[
|
||
'header' => lang('Person.podcast_form.persons'),
|
||
'cell' => function ($person) {
|
||
return '<div class="flex">' .
|
||
'<a href="' .
|
||
route_to('person-view', $person->id) .
|
||
'"><img src="' . $person->avatar->thumbnail_url . '" alt="' . esc($person->full_name) . '" class="object-cover w-16 h-16 rounded-full aspect-square" loading="lazy" /></a>' .
|
||
'<div class="flex flex-col ml-3">' .
|
||
esc($person->full_name) .
|
||
implode(
|
||
'',
|
||
array_map(function ($role) {
|
||
return '<span class="text-sm text-skin-muted">' .
|
||
lang(
|
||
"PersonsTaxonomy.persons.{$role->group}.label",
|
||
) .
|
||
' › ' .
|
||
lang(
|
||
"PersonsTaxonomy.persons.{$role->group}.roles.{$role->role}.label",
|
||
) .
|
||
'</span>';
|
||
}, $person->roles),
|
||
) .
|
||
($person->information_url === null
|
||
? ''
|
||
: '<a href="' . esc($person->information_url) . '" target="_blank" rel="noreferrer noopener" class="text-sm font-semibold text-accent-base hover:text-accent-hover">' .
|
||
esc($person->information_url) .
|
||
'</a>') .
|
||
'</div></div>';
|
||
},
|
||
],
|
||
[
|
||
'header' => lang('Common.actions'),
|
||
'cell' => function ($person): string {
|
||
return '<Button uri="' . route_to('podcast-person-remove', $person->podcast_id, $person->id) . '" variant="danger" size="small" iconLeft="delete-bin">' . lang('Person.podcast_form.remove') . '</Button>';
|
||
},
|
||
],
|
||
],
|
||
$podcast->persons,
|
||
'max-w-xl mt-6'
|
||
) ?>
|
||
|
||
<?= $this->endSection() ?>
|