mirror of
https://github.com/pelican-dev/panel.git
synced 2026-05-04 18:00:48 +03:00
10 lines
156 B
PHP
10 lines
156 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Enums;
|
||
|
|
|
||
|
|
enum CustomRenderHooks: string
|
||
|
|
{
|
||
|
|
case FooterStart = 'pelican::footer.start';
|
||
|
|
case FooterEnd = 'pelican::footer.end';
|
||
|
|
}
|