Example #1
0
 /**
  * @param $apartmentId
  * @return bool
  */
 public function getApartmentReceptionKeyInstructionTextline($apartmentId)
 {
     try {
         $apartmentDao = new \DDD\Dao\Accommodation\Accommodations($this->getServiceLocator());
         $textlines = $apartmentDao->getApartmentReceptionEntryTextline($apartmentId);
         if (!$textlines['en_text']) {
             return false;
         }
         return $textlines['en_text'];
     } catch (\Exception $e) {
         return false;
     }
 }