1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Models/DateFormat.php
2021-02-23 16:15:23 +11:00

53 lines
915 B
PHP

<?php
namespace App\Models;
/**
* Class DateFormat.
*/
class DateFormat extends StaticModel
{
protected $fillable = ['translated_format'];
public static $days_of_the_week = [
0 => 'sunday',
1 => 'monday',
2 => 'tuesday',
3 => 'wednesday',
4 => 'thursday',
5 => 'friday',
6 => 'saturday',
];
public static $months_of_the_years = [
0 => 'january',
1 => 'february',
2 => 'march',
3 => 'april',
4 => 'may',
5 => 'june',
6 => 'july',
7 => 'august',
8 => 'september',
9 => 'october',
10 => 'november',
11 => 'december',
];
/**
* @var bool
*/
public $timestamps = false;
/**
* @return bool|string
*/
public function __toString()
{
$date = mktime(0, 0, 0, 12, 31, date('Y'));
return date($this->format, $date);
}
}