geoproject-app/public/kirby/config/sections/mixins/min.php

22 lines
324 B
PHP
Raw Permalink Normal View History

<?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;
}
]
];