/** * 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 SubscriberGroup A model object, or null if the key is not found * @throws PropelException */ protected function findPkSimple($key, $con) { $sql = 'SELECT `id`, `name`, `display_name`, `is_default`, `description`, `created_at`, `updated_at`, `created_by`, `updated_by` FROM `subscriber_groups` WHERE `id` = :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 SubscriberGroup(); $obj->hydrate($row); SubscriberGroupPeer::addInstanceToPool($obj, (string) $key); } $stmt->closeCursor(); return $obj; }
/** * Retrieve multiple objects by pkey. * * @param array $pks List of primary keys * @param PropelPDO $con the connection to use * @return SubscriberGroup[] * @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(SubscriberGroupPeer::DATABASE_NAME, Propel::CONNECTION_READ); } $objs = null; if (empty($pks)) { $objs = array(); } else { $criteria = new Criteria(SubscriberGroupPeer::DATABASE_NAME); $criteria->add(SubscriberGroupPeer::ID, $pks, Criteria::IN); $objs = SubscriberGroupPeer::doSelect($criteria, $con); } return $objs; }
/** * Selects a collection of NewsletterMailing objects pre-filled with all related objects except UserRelatedByUpdatedBy. * * @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 NewsletterMailing objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAllExceptUserRelatedByUpdatedBy(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(NewsletterMailingPeer::DATABASE_NAME); } NewsletterMailingPeer::addSelectColumns($criteria); $startcol2 = NewsletterMailingPeer::NUM_HYDRATE_COLUMNS; SubscriberGroupPeer::addSelectColumns($criteria); $startcol3 = $startcol2 + SubscriberGroupPeer::NUM_HYDRATE_COLUMNS; NewsletterPeer::addSelectColumns($criteria); $startcol4 = $startcol3 + NewsletterPeer::NUM_HYDRATE_COLUMNS; $criteria->addJoin(NewsletterMailingPeer::SUBSCRIBER_GROUP_ID, SubscriberGroupPeer::ID, $join_behavior); $criteria->addJoin(NewsletterMailingPeer::NEWSLETTER_ID, NewsletterPeer::ID, $join_behavior); $stmt = BasePeer::doSelect($criteria, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = NewsletterMailingPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = NewsletterMailingPeer::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 = NewsletterMailingPeer::getOMClass(); $obj1 = new $cls(); $obj1->hydrate($row); NewsletterMailingPeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined SubscriberGroup rows $key2 = SubscriberGroupPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = SubscriberGroupPeer::getInstanceFromPool($key2); if (!$obj2) { $cls = SubscriberGroupPeer::getOMClass(); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); SubscriberGroupPeer::addInstanceToPool($obj2, $key2); } // if $obj2 already loaded // Add the $obj1 (NewsletterMailing) to the collection in $obj2 (SubscriberGroup) $obj2->addNewsletterMailing($obj1); } // if joined row is not null // Add objects for joined Newsletter rows $key3 = NewsletterPeer::getPrimaryKeyHashFromRow($row, $startcol3); if ($key3 !== null) { $obj3 = NewsletterPeer::getInstanceFromPool($key3); if (!$obj3) { $cls = NewsletterPeer::getOMClass(); $obj3 = new $cls(); $obj3->hydrate($row, $startcol3); NewsletterPeer::addInstanceToPool($obj3, $key3); } // if $obj3 already loaded // Add the $obj1 (NewsletterMailing) to the collection in $obj3 (Newsletter) $obj3->addNewsletterMailing($obj1); } // if joined row is not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }
public function mayOperate($sOperation, $oUser = false) { if ($oUser === false) { $oUser = Session::getSession()->getUser(); } $bIsAllowed = false; if ($oUser && ($this->isNew() || $this->getCreatedBy() === $oUser->getId()) && SubscriberGroupPeer::mayOperateOnOwn($oUser, $this, $sOperation)) { $bIsAllowed = true; } else { if (SubscriberGroupPeer::mayOperateOn($oUser, $this, $sOperation)) { $bIsAllowed = true; } } FilterModule::getFilters()->handleSubscriberGroupOperationCheck($sOperation, $this, $oUser, array(&$bIsAllowed)); return $bIsAllowed; }