feat(plugins): add siteHead hook to add custom meta tags to public pages

This commit is contained in:
Yassine Doghri 2024-05-01 15:41:13 +00:00
commit e80a33bf2a
6 changed files with 54 additions and 10 deletions

View file

@ -10,7 +10,9 @@ use App\Libraries\SimpleRSSElement;
interface PluginInterface
{
public function setChannelTag(Podcast $podcast, SimpleRSSElement $channel): void;
public function channelTag(Podcast $podcast, SimpleRSSElement $channel): void;
public function setItemTag(Episode $episode, SimpleRSSElement $item): void;
public function itemTag(Episode $episode, SimpleRSSElement $item): void;
public function siteHead(): void;
}