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

29 lines
434 B
PHP
Raw Permalink Normal View History

2021-10-29 18:05:46 +02:00
<?php
return [
2022-08-31 16:08:03 +02:00
'props' => [
/**
* Sets the maximum number of allowed entries in the section
*/
'max' => function (int $max = null) {
return $max;
}
],
'methods' => [
'isFull' => function () {
if ($this->max) {
return $this->total >= $this->max;
}
2021-10-29 18:05:46 +02:00
2022-08-31 16:08:03 +02:00
return false;
},
'validateMax' => function () {
if ($this->max && $this->total > $this->max) {
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
];