2
2
3
3
namespace Statamic \StaticSite ;
4
4
5
+ use Carbon \Carbon ;
5
6
use Spatie \Fork \Fork ;
7
+ use Statamic \Statamic ;
6
8
use Facades \Statamic \View \Cascade ;
7
9
use Statamic \Facades \URL ;
8
10
use Statamic \Support \Str ;
@@ -258,6 +260,13 @@ protected function makeContentGenerationClosures($pages, $request)
258
260
$ errors = [];
259
261
260
262
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
+
261
270
$ this ->updateCurrentSite ($ page ->site ());
262
271
263
272
view ()->getFinder ()->setPaths ($ this ->viewPaths );
@@ -277,6 +286,8 @@ protected function makeContentGenerationClosures($pages, $request)
277
286
278
287
$ errors [] = $ e ->consoleMessage ();
279
288
continue ;
289
+ } finally {
290
+ Carbon::setToStringFormat ($ oldCarbonFormat );
280
291
}
281
292
282
293
if ($ generated ->hasWarning ()) {
@@ -385,7 +396,7 @@ protected function routes()
385
396
&& ! Str::contains ($ route ->uri (), '{ ' );
386
397
})->map (function ($ route ) {
387
398
$ 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 ));
389
400
});
390
401
}
391
402
@@ -424,4 +435,13 @@ protected function shouldFail($item)
424
435
425
436
return $ config === 'warnings ' ;
426
437
}
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
+ }
427
447
}
0 commit comments