mmk2410.org/site/models/scribble.php
Marcel Kapfer 0d40b85f76
All checks were successful
Deploy / deploy (push) Successful in 3s
Add scribbles
2025-01-31 22:04:40 +01:00

19 lines
329 B
PHP

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