initial commit

This commit is contained in:
2025-04-29 13:58:05 -07:00
commit c074a5ef18
25 changed files with 7230 additions and 0 deletions

15
helpers/DateFormatter.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
namespace Helpers;
class DateFormatter
{
public static function monthDayYear()
{
return function ($template, $context, $args, $source) {
$dateString = strtotime($context->get($args));
return date("M d, Y", $dateString);
};
}
}