format static method

String format(
  1. DateTime dateTime
)

Implementation

static String format(DateTime dateTime)
{
  if (dateTime.hour < 6) {
    return _I18N_LATENIGHT;
  }
  if (dateTime.hour < 12) {
    return _I18N_MORNING;
  }
  if (dateTime.hour < 18) {
    return _I18N_AFTERNOON;
  }
  else {
    return _I18N_EVENING;
  }
}