コード例 #1
0
ファイル: WpLinksQuery.php プロジェクト: dipu/Propel-ORM-Test
 /**
  * Find object by primary key.
  * Propel uses the instance pool to skip the database if the object exists.
  * Go fast if the query is untouched.
  *
  * <code>
  * $obj  = $c->findPk(12, $con);
  * </code>
  *
  * @param mixed $key Primary key to use for the query
  * @param ConnectionInterface $con an optional connection object
  *
  * @return ChildWpLinks|array|mixed the result, formatted by the current formatter
  */
 public function findPk($key, ConnectionInterface $con = null)
 {
     if ($key === null) {
         return null;
     }
     if (null !== ($obj = WpLinksTableMap::getInstanceFromPool(null === $key || is_scalar($key) || is_callable([$key, '__toString']) ? (string) $key : $key)) && !$this->formatter) {
         // the object is already in the instance pool
         return $obj;
     }
     if ($con === null) {
         $con = Propel::getServiceContainer()->getReadConnection(WpLinksTableMap::DATABASE_NAME);
     }
     $this->basePreSelect($con);
     if ($this->formatter || $this->modelAlias || $this->with || $this->select || $this->selectColumns || $this->asColumns || $this->selectModifiers || $this->map || $this->having || $this->joins) {
         return $this->findPkComplex($key, $con);
     } else {
         return $this->findPkSimple($key, $con);
     }
 }