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

24 lines
377 B
PHP
Raw Permalink Normal View History

2021-10-29 18:05:46 +02:00
<?php
use Kirby\Toolkit\I18n;
return [
2022-08-31 16:08:03 +02:00
'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;
}
}
]
2021-10-29 18:05:46 +02:00
];