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

22 lines
319 B
PHP
Raw Normal View History

2021-10-29 18:05:46 +02:00
<?php
return [
2022-08-31 16:08:03 +02:00
'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;
}
2021-10-29 18:05:46 +02:00
2022-08-31 16:08:03 +02:00
return true;
}
]
2021-10-29 18:05:46 +02:00
];