actuel-inactuel/site/models/year.php

12 lines
376 B
PHP
Raw Normal View History

<?php
class YearPage extends Page{
public function allTexts(){
2026-03-28 16:53:17 +01:00
$princeps = $this->children()->listed()->first();
$texts = $this->children()->listed()->without($princeps);
$linked = $this->linkedTexts()->toPages();
2026-03-28 16:53:17 +01:00
$allTexts = $texts->merge($linked);
return $allTexts->sort('published', 'desc')->prepend($princeps);
}
}