You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
377 B
23 lines
377 B
<?php
|
|
|
|
use Kirby\Toolkit\I18n;
|
|
|
|
return [
|
|
'props' => [
|
|
/**
|
|
* Sets the help text
|
|
*/
|
|
'help' => function ($help = null) {
|
|
return I18n::translate($help, $help);
|
|
}
|
|
],
|
|
'computed' => [
|
|
'help' => function () {
|
|
if ($this->help) {
|
|
$help = $this->model()->toSafeString($this->help);
|
|
$help = $this->kirby()->kirbytext($help);
|
|
return $help;
|
|
}
|
|
}
|
|
]
|
|
];
|
|
|