designtopack/public/kirby/config/sections/mixins/min.php

22 lines
324 B
PHP
Raw Normal View History

2024-07-10 16:10:33 +02:00
<?php
return [
'props' => [
/**
* Sets the minimum number of required entries in the section
*/
2025-02-07 17:11:37 +01:00
'min' => function (int|null $min = null) {
2024-07-10 16:10:33 +02:00
return $min;
}
],
'methods' => [
'validateMin' => function () {
if ($this->min && $this->min > $this->total) {
return false;
}
return true;
}
]
];