示例#1
0
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      Connection $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 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(SystemsPeer::SYS_UID, $pks, Criteria::IN);
         $objs = SystemsPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
示例#2
0
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants TYPE_PHPNAME, TYPE_COLNAME, TYPE_FIELDNAME,
  * TYPE_NUM. The default key type is the column's phpname (e.g. 'authorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = SystemsPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setSysUid($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setSysCode($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setSysCreateDate($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setSysUpdateDate($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setSysStatus($arr[$keys[4]]);
     }
 }
示例#3
0
 function create($aData)
 {
     $con = Propel::getConnection(SystemsPeer::DATABASE_NAME);
     try {
         $SysUid = $aData['SYS_CODE'];
         $c = new Criteria('rbac');
         $c->add(SystemsPeer::SYS_CODE, $SysUid);
         $rs = SystemsPeer::doSelect($c);
         $exists = is_array($rs) && isset($rs[0]) && is_object($rs[0]) && get_class($rs[0]) == 'Systems';
         if ($exists) {
             return;
         }
         $aData['SYS_UID'] = G::generateUniqueId();
         $aData['SYS_CREATE_DATE'] = date('Y-m-d H:i:s');
         $aData['SYS_UPDATE_DATE'] = date('Y-m-d H:i:s');
         $aData['SYS_STATUS'] = '1';
         $this->fromArray($aData, BasePeer::TYPE_FIELDNAME);
         if ($this->validate()) {
             $result = $this->save();
         } else {
             $e = new Exception("Failed Validation in class " . get_class($this) . ".");
             $e->aValidationFailures = $this->getValidationFailures();
             throw $e;
         }
         $con->commit();
         return $result;
     } catch (exception $e) {
         $con->rollback();
         throw $e;
     }
 }