示例#1
0
 /**
  * Returns the number of related Log objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related Log objects.
  * @throws     PropelException
  */
 public function countLogs(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(UsuarisPeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collLogs === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(LogPeer::USUARIID, $this->usuariid);
             $count = LogPeer::doCount($criteria, false, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return count of the collection.
             $criteria->add(LogPeer::USUARIID, $this->usuariid);
             if (!isset($this->lastLogCriteria) || !$this->lastLogCriteria->equals($criteria)) {
                 $count = LogPeer::doCount($criteria, false, $con);
             } else {
                 $count = count($this->collLogs);
             }
         } else {
             $count = count($this->collLogs);
         }
     }
     return $count;
 }
示例#2
0
 /**
  * Method to invalidate the instance pool of all tables related to usuaris
  * by a foreign key with ON DELETE CASCADE
  */
 public static function clearRelatedInstancePool()
 {
     // invalidate objects in AppDocumentsPermisosPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     AppDocumentsPermisosPeer::clearInstancePool();
     // invalidate objects in AppDocumentsPermisosDirPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     AppDocumentsPermisosDirPeer::clearInstancePool();
     // invalidate objects in CessioPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     CessioPeer::clearInstancePool();
     // invalidate objects in FacturesPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     FacturesPeer::clearInstancePool();
     // invalidate objects in LogPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     LogPeer::clearInstancePool();
     // invalidate objects in MatriculesPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     MatriculesPeer::clearInstancePool();
     // invalidate objects in MissatgesPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     MissatgesPeer::clearInstancePool();
     // invalidate objects in PersonalPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     PersonalPeer::clearInstancePool();
     // invalidate objects in PersonalPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     PersonalPeer::clearInstancePool();
     // invalidate objects in ReservaespaisPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     ReservaespaisPeer::clearInstancePool();
     // invalidate objects in UsuarisAppsPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     UsuarisAppsPeer::clearInstancePool();
     // invalidate objects in UsuarisMenusPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     UsuarisMenusPeer::clearInstancePool();
     // invalidate objects in UsuarisSitesPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     UsuarisSitesPeer::clearInstancePool();
     // invalidate objects in UsuarisllistesPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     UsuarisllistesPeer::clearInstancePool();
 }
示例#3
0
文件: BaseLog.php 项目: nagiro/intra
 /**
  * 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 BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::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 = LogPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setUsuariid($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setAccio($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setModel($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setDadesbefore($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setDadesafter($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setData($arr[$keys[6]]);
     }
 }
示例#4
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 BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::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 = LogPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setMessage($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setWhen($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setPropelId($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setPropelClass($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setSfGuardUserProfileId($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setLogMessageTypeId($arr[$keys[6]]);
     }
 }
示例#5
0
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(LogPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(LogPeer::DATABASE_NAME);
         $criteria->add(LogPeer::ID, $pks, Criteria::IN);
         $objs = LogPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this sfGuardUserProfile is new, it will return
  * an empty collection; or if this sfGuardUserProfile has previously
  * been saved, it will retrieve related Logs from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in sfGuardUserProfile.
  */
 public function getLogsJoinMessageType($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     if ($criteria === null) {
         $criteria = new Criteria(sfGuardUserProfilePeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collLogs === null) {
         if ($this->isNew()) {
             $this->collLogs = array();
         } else {
             $criteria->add(LogPeer::SF_GUARD_USER_PROFILE_ID, $this->user_id);
             $this->collLogs = LogPeer::doSelectJoinMessageType($criteria, $con, $join_behavior);
         }
     } else {
         // the following code is to determine if a new query is
         // called for.  If the criteria is the same as the last
         // one, just return the collection.
         $criteria->add(LogPeer::SF_GUARD_USER_PROFILE_ID, $this->user_id);
         if (!isset($this->lastLogCriteria) || !$this->lastLogCriteria->equals($criteria)) {
             $this->collLogs = LogPeer::doSelectJoinMessageType($criteria, $con, $join_behavior);
         }
     }
     $this->lastLogCriteria = $criteria;
     return $this->collLogs;
 }
 /**
  * Method to invalidate the instance pool of all tables related to usuaris
  * by a foreign key with ON DELETE CASCADE
  */
 public static function clearRelatedInstancePool()
 {
     // invalidate objects in LogPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     LogPeer::clearInstancePool();
 }