/**
  * Check if the event is scheduled to current date.
  *
  * @param string $strTime Information about date and time in the following
  *                        format '2015-12-24 23:59'
  * @return boolean True if event's day, month and year are equals to
  *                 current's day, month and year; false otherwise
  */
 public static function isEventScheduledForToday($strTime)
 {
     $dtEvent = DateUtils::getInfomationAboutDate($strTime);
     return $dtEvent->dayVal === DateUtils::getCurrentDay() && $dtEvent->monthVal === DateUtils::getCurrentMonthNumber() && $dtEvent->yearVal === DateUtils::getCurrentYear();
 }