Files
lichterei-web/kirby/config/sections/mixins/min.php
Bastian Allgeier daf499e2e4 Upgrade to 4.6.0
2025-01-30 12:15:44 +01:00

22 lines
324 B
PHP

<?php
return [
'props' => [
/**
* Sets the minimum number of required entries in the section
*/
'min' => function (int|null $min = null) {
return $min;
}
],
'methods' => [
'validateMin' => function () {
if ($this->min && $this->min > $this->total) {
return false;
}
return true;
}
]
];