Skip to content

Commit d5664b7

Browse files
authored
Fix date to string format (#109)
1 parent d426056 commit d5664b7

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

src/Generator.php

+21-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
namespace Statamic\StaticSite;
44

5+
use Carbon\Carbon;
56
use Spatie\Fork\Fork;
7+
use Statamic\Statamic;
68
use Facades\Statamic\View\Cascade;
79
use Statamic\Facades\URL;
810
use Statamic\Support\Str;
@@ -258,6 +260,13 @@ protected function makeContentGenerationClosures($pages, $request)
258260
$errors = [];
259261

260262
foreach ($pages as $page) {
263+
// There is no getter method, so use reflection.
264+
$oldCarbonFormat = (new \ReflectionClass(Carbon::class))->getStaticPropertyValue('toStringFormat');
265+
266+
if ($this->shouldSetCarbonFormat($page)) {
267+
Carbon::setToStringFormat(Statamic::dateFormat());
268+
}
269+
261270
$this->updateCurrentSite($page->site());
262271

263272
view()->getFinder()->setPaths($this->viewPaths);
@@ -277,6 +286,8 @@ protected function makeContentGenerationClosures($pages, $request)
277286

278287
$errors[] = $e->consoleMessage();
279288
continue;
289+
} finally {
290+
Carbon::setToStringFormat($oldCarbonFormat);
280291
}
281292

282293
if ($generated->hasWarning()) {
@@ -385,7 +396,7 @@ protected function routes()
385396
&& ! Str::contains($route->uri(), '{');
386397
})->map(function ($route) {
387398
$url = URL::tidy(Str::start($route->uri(), $this->config['base_url'].'/'));
388-
return $this->createPage(new Route($url));
399+
return $this->createPage(new StatamicRoute($url));
389400
});
390401
}
391402

@@ -424,4 +435,13 @@ protected function shouldFail($item)
424435

425436
return $config === 'warnings';
426437
}
438+
439+
protected function shouldSetCarbonFormat($page)
440+
{
441+
$content = $page->content();
442+
443+
return $content instanceof \Statamic\Contracts\Entries\Entry
444+
|| $content instanceof \Statamic\Contracts\Taxonomies\Term
445+
|| $content instanceof StatamicRoute;
446+
}
427447
}

src/Page.php

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ public function __construct(Filesystem $files, array $config, $content)
2020
$this->content = $content;
2121
}
2222

23+
public function content()
24+
{
25+
return $this->content;
26+
}
27+
2328
public function isGeneratable()
2429
{
2530
return $this->content->published();

src/StatamicRoute.php

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace Statamic\StaticSite;
4+
5+
class StatamicRoute extends Route
6+
{
7+
//
8+
}

0 commit comments

Comments
 (0)