/**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @return CyclicalEvents[]
  * @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(CyclicalEventsPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(CyclicalEventsPeer::DATABASE_NAME);
         $criteria->add(CyclicalEventsPeer::ID_CYCLICAL_EVENT, $pks, Criteria::IN);
         $objs = CyclicalEventsPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
 /**
  * This function performs the validation work for complex object models.
  *
  * In addition to checking the current object, all related objects will
  * also be validated.  If all pass then <code>true</code> is returned; otherwise
  * an aggregated array of ValidationFailed objects will be returned.
  *
  * @param array $columns Array of column names to validate.
  * @return mixed <code>true</code> if all validations pass; array of <code>ValidationFailed</code> objects otherwise.
  */
 protected function doValidate($columns = null)
 {
     if (!$this->alreadyInValidation) {
         $this->alreadyInValidation = true;
         $retval = null;
         $failureMap = array();
         // We call the validate method on the following object(s) if they
         // were passed to this object by their corresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aUser !== null) {
             if (!$this->aUser->validate($columns)) {
                 $failureMap = array_merge($failureMap, $this->aUser->getValidationFailures());
             }
         }
         if (($retval = CyclicalEventsPeer::doValidate($this, $columns)) !== true) {
             $failureMap = array_merge($failureMap, $retval);
         }
         if ($this->collCyclicalEventHasLists !== null) {
             foreach ($this->collCyclicalEventHasLists as $referrerFK) {
                 if (!$referrerFK->validate($columns)) {
                     $failureMap = array_merge($failureMap, $referrerFK->getValidationFailures());
                 }
             }
         }
         $this->alreadyInValidation = false;
     }
     return !empty($failureMap) ? $failureMap : true;
 }
 /**
  * Find object by primary key using raw SQL to go fast.
  * Bypass doSelect() and the object formatter by using generated code.
  *
  * @param     mixed $key Primary key to use for the query
  * @param     PropelPDO $con A connection object
  *
  * @return                 CyclicalEvents A model object, or null if the key is not found
  * @throws PropelException
  */
 protected function findPkSimple($key, $con)
 {
     $sql = 'SELECT `id_cyclical_event`, `cyclical_event_name`, `cyclical_event_description`, `cyclical_event_weight`, `cyclical_event_month`, `cyclical_event_week_day`, `cyclical_event_day`, `id_user`, `created_at`, `updated_at` FROM `cyclical_events` WHERE `id_cyclical_event` = :p0';
     try {
         $stmt = $con->prepare($sql);
         $stmt->bindValue(':p0', $key, PDO::PARAM_INT);
         $stmt->execute();
     } catch (Exception $e) {
         Propel::log($e->getMessage(), Propel::LOG_ERR);
         throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e);
     }
     $obj = null;
     if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $obj = new CyclicalEvents();
         $obj->hydrate($row);
         CyclicalEventsPeer::addInstanceToPool($obj, (string) $key);
     }
     $stmt->closeCursor();
     return $obj;
 }
 /**
  * Selects a collection of CyclicalEventHasList objects pre-filled with all related objects except CustomLists.
  *
  * @param      Criteria  $criteria
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return array           Array of CyclicalEventHasList objects.
  * @throws PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptCustomLists(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     // $criteria->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(CyclicalEventHasListPeer::DATABASE_NAME);
     }
     CyclicalEventHasListPeer::addSelectColumns($criteria);
     $startcol2 = CyclicalEventHasListPeer::NUM_HYDRATE_COLUMNS;
     CyclicalEventsPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + CyclicalEventsPeer::NUM_HYDRATE_COLUMNS;
     $criteria->addJoin(CyclicalEventHasListPeer::ID_CYCLICAL_EVENT, CyclicalEventsPeer::ID_CYCLICAL_EVENT, $join_behavior);
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = CyclicalEventHasListPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = CyclicalEventHasListPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://www.propelorm.org/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = CyclicalEventHasListPeer::getOMClass();
             $obj1 = new $cls();
             $obj1->hydrate($row);
             CyclicalEventHasListPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined CyclicalEvents rows
         $key2 = CyclicalEventsPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = CyclicalEventsPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = CyclicalEventsPeer::getOMClass();
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 CyclicalEventsPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (CyclicalEventHasList) to the collection in $obj2 (CyclicalEvents)
             $obj2->addCyclicalEventHasList($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }