mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
24 lines
507 B
PHP
24 lines
507 B
PHP
<?php
|
|
# Header
|
|
require_once(dirname(__FILE__).'/_header.php');
|
|
|
|
# Index
|
|
ob_start();
|
|
require($dir.'/all.php');
|
|
$contents = ob_get_contents();
|
|
ob_end_clean();
|
|
file_put_contents($out.'/index.html', $contents);
|
|
|
|
# Each
|
|
foreach ( $browsers as $browser )
|
|
foreach ( $adapters as $adapter ) {
|
|
ob_start();
|
|
require($dir.'/each.php');
|
|
$contents = ob_get_contents();
|
|
ob_end_clean();
|
|
file_put_contents($out."/${url}", $contents);
|
|
}
|
|
|
|
# Done
|
|
?><html><body><a href="../tests">Tests</a></body></html>
|