xiaowang/kirby/config/sections/mixins/help.php

24 lines
494 B
PHP
Raw Normal View History

2021-10-29 18:05:46 +02:00
<?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) {
2021-11-18 17:44:47 +01:00
$help = $this->model()->toSafeString($this->help);
2021-10-29 18:05:46 +02:00
$help = $this->kirby()->kirbytext($help);
return $help;
}
}
]
];