mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
16 lines
528 B
PHP
16 lines
528 B
PHP
<?php
|
|
|
|
// Mock app if not installed with silverstripe/installer
|
|
if (defined('BASE_PATH')) {
|
|
$projectPath = BASE_PATH . '/app';
|
|
} else {
|
|
$projectPath = getcwd() . '/app';
|
|
}
|
|
if (!is_dir($projectPath ?? '')) {
|
|
mkdir($projectPath ?? '', 02775);
|
|
mkdir($projectPath . '/code', 02775);
|
|
mkdir($projectPath . '/_config', 02775);
|
|
copy(__DIR__ . '/fixtures/Page.php.fixture', $projectPath . '/code/Page.php');
|
|
copy(__DIR__ . '/fixtures/PageController.php.fixture', $projectPath . '/code/PageController.php');
|
|
}
|