2022-06-17 17:51:59 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Kirby\Toolkit\I18n;
|
|
|
|
|
|
|
|
return [
|
2022-08-31 15:02:43 +02:00
|
|
|
'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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2022-06-17 17:51:59 +02:00
|
|
|
];
|