1
0
Files
re_capitulating_queer/kirby/config/sections/mixins/empty.php
Philip Wagner 78b6c0d381 init
2024-08-31 10:01:49 +02:00

22 lines
338 B
PHP

<?php
use Kirby\Toolkit\I18n;
return [
'props' => [
/**
* Sets the text for the empty state box
*/
'empty' => function ($empty = null) {
return I18n::translate($empty, $empty);
}
],
'computed' => [
'empty' => function () {
if ($this->empty) {
return $this->model()->toSafeString($this->empty);
}
}
]
];