mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
API Make the public directory mandatory (#10617)
This commit is contained in:
parent
fa75a36267
commit
b14de847a5
@ -75,15 +75,6 @@ class Director implements TemplateGlobalProvider
|
||||
*/
|
||||
private static $alternate_base_folder;
|
||||
|
||||
/**
|
||||
* Override PUBLIC_DIR. Set to a non-null value to override.
|
||||
* Setting to an empty string will disable public dir.
|
||||
*
|
||||
* @config
|
||||
* @var bool|null
|
||||
*/
|
||||
private static $alternate_public_dir = null;
|
||||
|
||||
/**
|
||||
* Base url to populate if cannot be determined otherwise.
|
||||
* Supports back-ticked vars; E.g. '`SS_BASE_URL`'
|
||||
@ -654,19 +645,12 @@ class Director implements TemplateGlobalProvider
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if using a separate public dir, and if so return this directory
|
||||
* name.
|
||||
*
|
||||
* This will be removed in 5.0 and fixed to 'public'
|
||||
* The name of the public directory
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function publicDir()
|
||||
{
|
||||
$alternate = self::config()->uninherited('alternate_public_dir');
|
||||
if (isset($alternate)) {
|
||||
return $alternate;
|
||||
}
|
||||
return PUBLIC_DIR;
|
||||
}
|
||||
|
||||
|
@ -6,6 +6,6 @@ class PublicThemes implements ThemeList
|
||||
{
|
||||
public function getThemes()
|
||||
{
|
||||
return PUBLIC_DIR ? ['/' . PUBLIC_DIR] : [];
|
||||
return ['/' . PUBLIC_DIR];
|
||||
}
|
||||
}
|
||||
|
@ -24,7 +24,7 @@ use SilverStripe\Core\TempFolder;
|
||||
* - THEMES_PATH: Absolute filepath, e.g. "/var/www/my-webroot/themes"
|
||||
* - FRAMEWORK_DIR: Path relative to webroot, e.g. "framework"
|
||||
* - FRAMEWORK_PATH:Absolute filepath, e.g. "/var/www/my-webroot/framework"
|
||||
* - PUBLIC_DIR: Webroot path relative to project root, e.g. "public" or ""
|
||||
* - PUBLIC_DIR: Webroot path relative to project root - always evaluates to "public"
|
||||
* - PUBLIC_PATH: Absolute path to webroot, e.g. "/var/www/project/public"
|
||||
* - THIRDPARTY_DIR: Path relative to webroot, e.g. "framework/thirdparty"
|
||||
* - THIRDPARTY_PATH: Absolute filepath, e.g. "/var/www/my-webroot/framework/thirdparty"
|
||||
@ -70,10 +70,10 @@ if (!defined('BASE_PATH')) {
|
||||
|
||||
// Set public webroot dir / path
|
||||
if (!defined('PUBLIC_DIR')) {
|
||||
define('PUBLIC_DIR', is_dir(BASE_PATH . DIRECTORY_SEPARATOR . 'public') ? 'public' : '');
|
||||
define('PUBLIC_DIR', 'public');
|
||||
}
|
||||
if (!defined('PUBLIC_PATH')) {
|
||||
define('PUBLIC_PATH', PUBLIC_DIR ? BASE_PATH . DIRECTORY_SEPARATOR . PUBLIC_DIR : BASE_PATH);
|
||||
define('PUBLIC_PATH', BASE_PATH . DIRECTORY_SEPARATOR . PUBLIC_DIR);
|
||||
}
|
||||
|
||||
// Allow a first class env var to be set that disables .env file loading
|
||||
@ -183,7 +183,7 @@ if (!defined('ASSETS_PATH')) {
|
||||
call_user_func(function () {
|
||||
$paths = [
|
||||
BASE_PATH,
|
||||
(PUBLIC_DIR ? PUBLIC_DIR : null),
|
||||
PUBLIC_DIR,
|
||||
ASSETS_DIR
|
||||
];
|
||||
define('ASSETS_PATH', implode(DIRECTORY_SEPARATOR, array_filter($paths ?? [])));
|
||||
|
@ -90,7 +90,7 @@ class TinyMCECombinedGeneratorTest extends SapphireTest
|
||||
// Check plugin links included
|
||||
$this->assertStringContainsString(
|
||||
<<<EOS
|
||||
tinymce.each('tinymce/langs/en.js,mycode/plugin1.js,tinymce/plugins/plugin4/plugin.min.js,tinymce/plugins/plugin4/langs/en.js,tinymce/plugins/plugin5/plugin.js,mycode/plugin6.js,mycode/plugin8.js?m=
|
||||
tinymce.each('tinymce/langs/en.js,mycode/plugin1.js,tinymce/plugins/plugin4/plugin.min.js,tinymce/plugins/plugin4/langs/en.js,tinymce/plugins/plugin5/plugin.js,mycode/plugin6.js,_resources/mycode/plugin8.js?m=
|
||||
EOS
|
||||
,
|
||||
$content
|
||||
|
Loading…
Reference in New Issue
Block a user