-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrects issue with importing/exporting Blueprints on Windows
- Loading branch information
1 parent
8111023
commit 6c0c32b
Showing
3 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace Statamic\Eloquent\Fields; | ||
|
||
use Statamic\Fields\Blueprint as CoreBlueprint; | ||
use Statamic\Support\Str; | ||
|
||
class Blueprint extends CoreBlueprint | ||
{ | ||
public function namespace(): ?string | ||
{ | ||
$blueprintDir = str_replace('\\', '/', \Statamic\Facades\Blueprint::directory()); | ||
$blueprintDir = str_replace('/', '.', $blueprintDir); | ||
|
||
if (Str::startsWith($this->namespace, $blueprintDir)) { | ||
return mb_substr($this->namespace, mb_strlen($blueprintDir)); | ||
} | ||
|
||
return $this->namespace; | ||
} | ||
} |