Skip to content

Commit

Permalink
Merge branch 'master' into publications-command-cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva authored Oct 27, 2023
2 parents ac8e489 + 528cd86 commit 3c7d063
Showing 1 changed file with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@ protected function makeHidden(): bool
{
return $this->isInstanceOf(MarkdownPost::class)
|| $this->searchForHiddenInFrontMatter()
|| in_array($this->routeKey, Config::getArray('hyde.navigation.exclude', ['404']))
|| (! $this->isInstanceOf(DocumentationPage::class) && $this->pageIsInSubdirectory() && ($this->getSubdirectoryConfiguration() === 'hidden'))
&& (basename($this->identifier) !== 'index');
|| $this->isPageHiddenInNavigationConfiguration()
|| $this->isNonDocumentationPageInHiddenSubdirectory();
}

protected function makePriority(): int
Expand Down Expand Up @@ -119,6 +118,19 @@ private function searchForHiddenInFrontMatter(): ?bool
?? $this->invert($this->getMatter('navigation.visible'));
}

private function isPageHiddenInNavigationConfiguration(): ?bool
{
return in_array($this->routeKey, Config::getArray('hyde.navigation.exclude', ['404']));
}

private function isNonDocumentationPageInHiddenSubdirectory(): bool
{
return ! $this->isInstanceOf(DocumentationPage::class)
&& $this->pageIsInSubdirectory()
&& $this->getSubdirectoryConfiguration() === 'hidden'
&& basename($this->identifier) !== 'index';
}

private function searchForPriorityInFrontMatter(): ?int
{
return $this->getMatter('navigation.priority')
Expand Down

0 comments on commit 3c7d063

Please sign in to comment.