mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-12 11:16:43 +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
|
|
@ -59,6 +59,7 @@ class SubscriptionController extends BaseController
|
|||
|
||||
helper('form');
|
||||
|
||||
$this->setHtmlHead(lang('Subscription.podcast_subscriptions'));
|
||||
replace_breadcrumb_params([
|
||||
0 => $this->podcast->at_handle,
|
||||
]);
|
||||
|
|
@ -109,6 +110,7 @@ class SubscriptionController extends BaseController
|
|||
'subscription' => $this->subscription,
|
||||
];
|
||||
|
||||
$this->setHtmlHead(lang('Subscription.view', [$this->subscription->id]));
|
||||
replace_breadcrumb_params([
|
||||
0 => $this->podcast->at_handle,
|
||||
1 => '#' . $this->subscription->id,
|
||||
|
|
@ -124,6 +126,7 @@ class SubscriptionController extends BaseController
|
|||
'podcast' => $this->podcast,
|
||||
];
|
||||
|
||||
$this->setHtmlHead(lang('Subscription.add', [esc($this->podcast->title)]));
|
||||
replace_breadcrumb_params([
|
||||
0 => $this->podcast->at_handle,
|
||||
]);
|
||||
|
|
@ -250,6 +253,7 @@ class SubscriptionController extends BaseController
|
|||
'subscription' => $this->subscription,
|
||||
];
|
||||
|
||||
$this->setHtmlHead(lang('Subscription.edit', [esc($this->podcast->title)]));
|
||||
replace_breadcrumb_params([
|
||||
0 => $this->podcast->at_handle,
|
||||
1 => '#' . $this->subscription->id,
|
||||
|
|
@ -318,6 +322,7 @@ class SubscriptionController extends BaseController
|
|||
'subscription' => $this->subscription,
|
||||
];
|
||||
|
||||
$this->setHtmlHead(lang('Subscription.suspend'));
|
||||
replace_breadcrumb_params([
|
||||
0 => $this->podcast->at_handle,
|
||||
1 => '#' . $this->subscription->id,
|
||||
|
|
@ -413,6 +418,7 @@ class SubscriptionController extends BaseController
|
|||
'subscription' => $this->subscription,
|
||||
];
|
||||
|
||||
$this->setHtmlHead(lang('Subscription.delete'));
|
||||
replace_breadcrumb_params([
|
||||
0 => $this->podcast->at_handle,
|
||||
1 => '#' . $this->subscription->id,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue