Files
lichterei-web/kirby/config/sections/mixins/parent.php
Bastian Allgeier 01277f79f2 first version
2019-01-13 23:17:34 +01:00

30 lines
595 B
PHP
Executable File

<?php
use Kirby\Toolkit\Str;
return [
'props' => [
/**
* Sets the query to a parent to find items for the list
*/
'parent' => function (string $parent = null) {
return $parent;
}
],
'methods' => [
'parentModel' => function () {
$parent = $this->parent;
if (is_string($parent) === true) {
$parent = $this->model->query($parent);
}
if ($parent === null) {
return $this->model;
}
return $parent;
}
]
];