public static function getJobsByPhotographerId($photogId)
 {
     $c = new Criteria();
     $c->add(JobPhotographerPeer::PHOTOGRAPHER_ID, $photogId);
     $obj = JobPhotographerPeer::doSelect($c);
     $ids = array();
     foreach ($obj as $i) {
         $ids[] = $i->getJobId();
     }
     return $ids;
 }
 /**
  * Gets an array of JobPhotographer objects which contain a foreign key that references this object.
  *
  * If this collection has already been initialized with an identical Criteria, it returns the collection.
  * Otherwise if this Photographer has previously been saved, it will retrieve
  * related JobPhotographers from storage. If this Photographer is new, it will return
  * an empty collection or the current collection, the criteria is ignored on a new object.
  *
  * @param      PropelPDO $con
  * @param      Criteria $criteria
  * @return     array JobPhotographer[]
  * @throws     PropelException
  */
 public function getJobPhotographers($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(PhotographerPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collJobPhotographers === null) {
         if ($this->isNew()) {
             $this->collJobPhotographers = array();
         } else {
             $criteria->add(JobPhotographerPeer::PHOTOGRAPHER_ID, $this->id);
             JobPhotographerPeer::addSelectColumns($criteria);
             $this->collJobPhotographers = JobPhotographerPeer::doSelect($criteria, $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 the collection.
             $criteria->add(JobPhotographerPeer::PHOTOGRAPHER_ID, $this->id);
             JobPhotographerPeer::addSelectColumns($criteria);
             if (!isset($this->lastJobPhotographerCriteria) || !$this->lastJobPhotographerCriteria->equals($criteria)) {
                 $this->collJobPhotographers = JobPhotographerPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastJobPhotographerCriteria = $criteria;
     return $this->collJobPhotographers;
 }
 /**
  * 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(JobPhotographerPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(JobPhotographerPeer::DATABASE_NAME);
         $criteria->add(JobPhotographerPeer::ID, $pks, Criteria::IN);
         $objs = JobPhotographerPeer::doSelect($criteria, $con);
     }
     return $objs;
 }