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

29 lines
439 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 maximum number of allowed entries in the section
*/
2025-04-21 18:57:21 +02:00
'max' => function (int|null $max = null) {
2022-08-31 15:02:43 +02:00
return $max;
}
],
'methods' => [
'isFull' => function () {
if ($this->max) {
return $this->total >= $this->max;
}
2022-06-17 17:51:59 +02:00
2022-08-31 15:02:43 +02:00
return false;
},
'validateMax' => function () {
if ($this->max && $this->total > $this->max) {
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
];