mmk2410.org/site/models/scribble.php

20 lines
329 B
PHP
Raw Permalink Normal View History

2025-01-31 22:04:40 +01:00
<?php
use Kirby\Cms\Page;
/**
* @method object date()
* @method object text()
*/
class ScribblePage extends Page
{
/**
* @param array|string|null $options
*/
public function url($options = null): string
{
$date = $this->date()->toDate('Y/m/d-Hi');
return '/scribbles/' . $date;
}
}