mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-03 23:09:18 +02:00
feat(plugins): add html field type + CodeEditor component + rework html head generation
update php and js packages to latest
This commit is contained in:
parent
b869acb3a9
commit
8cf9c6dc83
227 changed files with 2991 additions and 2988 deletions
|
|
@ -82,6 +82,7 @@ class VideoClipsController extends BaseController
|
|||
'pager' => $videoClipsBuilder->pager,
|
||||
];
|
||||
|
||||
$this->setHtmlHead(lang('VideoClip.list.title'));
|
||||
replace_breadcrumb_params([
|
||||
0 => $this->podcast->at_handle,
|
||||
1 => $this->episode->title,
|
||||
|
|
@ -99,6 +100,9 @@ class VideoClipsController extends BaseController
|
|||
'videoClip' => $videoClip,
|
||||
];
|
||||
|
||||
$this->setHtmlHead(lang('VideoClip.title', [
|
||||
'videoClipLabel' => esc($videoClip->title),
|
||||
]));
|
||||
replace_breadcrumb_params([
|
||||
0 => $this->podcast->at_handle,
|
||||
1 => $this->episode->title,
|
||||
|
|
@ -128,9 +132,10 @@ class VideoClipsController extends BaseController
|
|||
'transcript' => $this->episode->transcript instanceof Transcript,
|
||||
];
|
||||
|
||||
$this->setHtmlHead(lang('VideoClip.form.title'));
|
||||
|
||||
if (in_array(false, $checks, true)) {
|
||||
$data['checks'] = $checks;
|
||||
|
||||
return view('episode/video_clips_requirements', $data);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue