actuel-inactuel/site/models/year.php
isUnknown 80efbf3d5f
All checks were successful
Deploy / Deploy to Production (push) Successful in 6s
texts : sort and style
2026-03-28 16:53:17 +01:00

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);
}
}