Last active
April 12, 2019 12:41
-
-
Save medienbaecker/ad04b36aaf379d703174efe263bf5568 to your computer and use it in GitHub Desktop.
Page model for sections
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# site/models/section.php | |
class SectionPage extends Page { | |
public function url($options = null): string { | |
return $this->parents()->filterBy("intendedTemplate", "!=", "sections")->first()->url() . '#' . $this->slug(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment