1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/DateFormat.php

67 lines
1.8 KiB
PHP
Raw Normal View History

2019-09-22 11:30:03 +02:00
<?php
namespace App\Models;
/**
* Class DateFormat.
2023-03-08 08:33:42 +01:00
*
* @property int $id
* @property string $format
* @property string $format_moment
* @property string $format_dart
* @method static \Illuminate\Database\Eloquent\Builder|StaticModel company()
* @method static \Illuminate\Database\Eloquent\Builder|StaticModel exclude($columns)
* @method static \Illuminate\Database\Eloquent\Builder|DateFormat newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|DateFormat newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|DateFormat query()
* @method static \Illuminate\Database\Eloquent\Builder|DateFormat whereFormat($value)
* @method static \Illuminate\Database\Eloquent\Builder|DateFormat whereFormatDart($value)
* @method static \Illuminate\Database\Eloquent\Builder|DateFormat whereFormatMoment($value)
* @method static \Illuminate\Database\Eloquent\Builder|DateFormat whereId($value)
* @mixin \Eloquent
2019-09-22 11:30:03 +02:00
*/
class DateFormat extends StaticModel
{
2021-02-23 06:15:23 +01:00
protected $fillable = ['translated_format'];
2019-10-15 12:36:51 +02:00
public static $days_of_the_week = [
0 => 'sunday',
1 => 'monday',
2 => 'tuesday',
3 => 'wednesday',
4 => 'thursday',
5 => 'friday',
6 => 'saturday',
2019-10-15 12:36:51 +02:00
];
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',
2019-10-15 12:36:51 +02:00
];
2019-09-22 11:30:03 +02:00
/**
* @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);
}
}