12 lines
No EOL
376 B
PHP
12 lines
No EOL
376 B
PHP
<?php
|
|
class YearPage extends Page{
|
|
public function allTexts(){
|
|
$princeps = $this->children()->listed()->first();
|
|
|
|
$texts = $this->children()->listed()->without($princeps);
|
|
$linked = $this->linkedTexts()->toPages();
|
|
$allTexts = $texts->merge($linked);
|
|
|
|
return $allTexts->sort('published', 'desc')->prepend($princeps);
|
|
}
|
|
} |