- show button title if delete is used in page actions - fix invoice due date depends on invoice date, replace DateTime with DateTimeI… - lowercase all font names in PDFs, otherwise they fail loading - hide empty fieldset (work-contract page) - activate contract_other_profile by default for admin and super-admin - deactivate rule to check "maximum duration of entries" by default - allow to deactivate presets in DateRange Picker (for Devs)
50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App;
|
|
|
|
/**
|
|
* Some "very" global constants for Kimai.
|
|
*/
|
|
class Constants
|
|
{
|
|
/**
|
|
* The current release version
|
|
*/
|
|
public const VERSION = '2.0.29';
|
|
/**
|
|
* The current release: major * 10000 + minor * 100 + patch
|
|
*/
|
|
public const VERSION_ID = 20029;
|
|
/**
|
|
* The software name
|
|
*/
|
|
public const SOFTWARE = 'Kimai';
|
|
/**
|
|
* Used in multiple views
|
|
*/
|
|
public const GITHUB = 'https://github.com/kimai/kimai/';
|
|
/**
|
|
* The Github repository name
|
|
*/
|
|
public const GITHUB_REPO = 'kimai/kimai';
|
|
/**
|
|
* Homepage, used in multiple views
|
|
*/
|
|
public const HOMEPAGE = 'https://www.kimai.org';
|
|
/**
|
|
* Application wide default locale
|
|
*/
|
|
public const DEFAULT_LOCALE = 'en';
|
|
/**
|
|
* Default color for Customer, Project and Activity entities
|
|
*/
|
|
public const DEFAULT_COLOR = '#d2d6de';
|
|
}
|