8 lines
No EOL
210 B
PHP
8 lines
No EOL
210 B
PHP
<?php
|
|
class YearPage extends Page{
|
|
public function allTexts(){
|
|
$texts = $this->children()->listed();
|
|
$linked = $this->linkedTexts()->toPages();
|
|
return $texts->merge($linked);
|
|
}
|
|
} |