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