xiaowang/kirby/config/sections/mixins/min.php
2022-08-31 16:08:03 +02:00

21 lines
319 B
PHP

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