10 lines
189 B
PHP
10 lines
189 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return function($page) {
|
||
|
|
if ($page->template() == "project") {
|
||
|
|
kirby()->impersonate('kirby');
|
||
|
|
foreach ($page->children() as $child) {
|
||
|
|
$child->delete();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|