Esempio n. 1
0
 function serviceCode()
 {
     $select = $this->getReadAdapter()->select()->from($this->wrappedVehicle->schema()->definitionTable(), array('service_code'));
     foreach ($this->toValueArray() as $key => $val) {
         $select->where($key . '_id = ?', $val);
     }
     $result = $this->query($select);
     return $result->fetchColumn();
 }