vito/app/Web/Traits/PageHasCluster.php
Saeed Vaziry f6bc04763b
2.x
2024-09-27 20:36:03 +02:00

21 lines
383 B
PHP

<?php
namespace App\Web\Traits;
trait PageHasCluster
{
// public function getMaxContentWidth(): ?string
// {
// return 'full';
// }
public function getSubNavigation(): array
{
if (filled($cluster = static::getCluster())) {
return $this->generateNavigationItems($cluster::getClusteredComponents());
}
return [];
}
}