julienmonnerie/kirby/config/sections/mixins/min.php

22 lines
324 B
PHP
Raw Normal View History

2022-06-17 17:51:59 +02:00
<?php
return [
2022-08-31 15:02:43 +02:00
'props' => [
/**
* Sets the minimum number of required entries in the section
*/
2025-04-21 18:57:21 +02:00
'min' => function (int|null $min = null) {
2022-08-31 15:02:43 +02:00
return $min;
}
],
'methods' => [
'validateMin' => function () {
if ($this->min && $this->min > $this->total) {
return false;
}
2022-06-17 17:51:59 +02:00
2022-08-31 15:02:43 +02:00
return true;
}
]
2022-06-17 17:51:59 +02:00
];