/**
  * Returns the cached result of date('D M j G:i:s T Y').
  *
  * @return string
  * @since  Method available since Release 3.0.1
  */
 public static function getDate()
 {
     if (self::$date == '') {
         self::$date = date('D M j G:i:s T Y');
     }
     return self::$date;
 }