silverstripe-frameworktest/code/tasks/FTPageMakerTask.php
Ingo Schommer 29c5c29c95 Reduced default page count a bit
15k is a good high-use case, but a bit much for a standard CMS installation
2017-07-05 09:58:48 +12:00

54 lines
1.2 KiB
PHP

<?php
use SilverStripe\Dev\BuildTask;
/**
* Creates sample page structure, useful to test tree performance,
* UI behaviour on deeply nested pages etc.
*
* @todo Allow passing in counts
*/
class FTPageMakerTask extends BuildTask
{
/**
* Defaults create 2,000 pages
*/
protected $pageCountByDepth = [
5,
100,
1,
1,
1
];
public function run($request)
{
$this->generatePages();
}
protected function generatePages($depth = 0, $prefix = "", $parentID = 0)
{
$maxDepth = count($this->pageCountByDepth);
$pageCount = $this->pageCountByDepth[$depth];
for ($i=1; $i<=$pageCount; $i++) {
$fullPrefix = $prefix ? "{$prefix}-{$i}" : $i;
$page = new Page();
$page->ParentID = $parentID;
$page->Title = "Test page {$fullPrefix}";
$page->write();
$page->publish('Stage', 'Live');
echo "Created '$page->Title'\n";
$pageID = $page->ID;
unset($page);
if ($depth < $maxDepth-1) {
$this->generatePages($depth+1, $fullPrefix, $pageID);
}
}
}
}