geoproject-app/public/site/models/geoformat.php

14 lines
233 B
PHP
Raw Normal View History

<?php
use Kirby\Cms\Page;
class GeoformatPage extends Page
{
public function coverFiles()
{
return $this->files()->add(
$this->children()->filterBy('intendedTemplate', 'map')->files()
);
}
}