Пример #1
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = VLeavePeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setStudentId($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setAcademicCalendarId($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setStatus($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setStart($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setEnd($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setHoliday($arr[$keys[6]]);
     }
     if (array_key_exists($keys[7], $arr)) {
         $this->setTotalDays($arr[$keys[7]]);
     }
     if (array_key_exists($keys[8], $arr)) {
         $this->setClassGroupId($arr[$keys[8]]);
     }
     if (array_key_exists($keys[9], $arr)) {
         $this->setDetail($arr[$keys[9]]);
     }
 }
Пример #2
0
 public static function retrieveByPKs($pks, $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(self::DATABASE_NAME);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria();
         $criteria->add(VLeavePeer::ID, $pks, Criteria::IN);
         $objs = VLeavePeer::doSelect($criteria, $con);
     }
     return $objs;
 }