示例#1
0
 public function inVacationMode()
 {
     if ($this->getVacationStart() != null) {
         if ($this->getVacationStart() < time() - 60 * 60 * 24 * 31) {
             $this->endVacationMode();
         }
     }
     return parent::inVacationMode();
 }