
| Current Path : /var/www/html/dinarosun/web/core/modules/datetime_range/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/dinarosun/web/core/modules/datetime_range/src/DateTimeRangeConstantsInterface.php |
<?php
namespace Drupal\datetime_range;
/**
* Declares constants used in the datetime range module.
*
* @todo Convert this to an enum in 11.0.
* @see https://www.drupal.org/project/drupal/issues/3425141.
*/
interface DateTimeRangeConstantsInterface {
/**
* Values for the 'from_to' formatter setting.
*/
const BOTH = 'both';
const START_DATE = 'start_date';
const END_DATE = 'end_date';
}