本文整理汇总了PHP中sfGuardUserPermissionPeer::getInstanceFromPool方法的典型用法代码示例。如果您正苦于以下问题:PHP sfGuardUserPermissionPeer::getInstanceFromPool方法的具体用法?PHP sfGuardUserPermissionPeer::getInstanceFromPool怎么用?PHP sfGuardUserPermissionPeer::getInstanceFromPool使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sfGuardUserPermissionPeer
的用法示例。
在下文中一共展示了sfGuardUserPermissionPeer::getInstanceFromPool方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: findPk
/**
* 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(array(12, 34), $con);
* </code>
*
* @param array[$user_id, $permission_id] $key Primary key to use for the query
* @param PropelPDO $con an optional connection object
*
* @return sfGuardUserPermission|array|mixed the result, formatted by the current formatter
*/
public function findPk($key, $con = null)
{
if ($key === null) {
return null;
}
if (null !== ($obj = sfGuardUserPermissionPeer::getInstanceFromPool(serialize(array((string) $key[0], (string) $key[1])))) && !$this->formatter) {
// the object is alredy in the instance pool
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(sfGuardUserPermissionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$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);
}
}
示例2: retrieveByPK
/**
* Retrieve object using using composite pkey values.
* @param int $user_id
* @param int $permission_id
* @param PropelPDO $con
* @return sfGuardUserPermission
*/
public static function retrieveByPK($user_id, $permission_id, PropelPDO $con = null)
{
$key = serialize(array((string) $user_id, (string) $permission_id));
if (null !== ($obj = sfGuardUserPermissionPeer::getInstanceFromPool($key))) {
return $obj;
}
if ($con === null) {
$con = Propel::getConnection(sfGuardUserPermissionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
}
$criteria = new Criteria(sfGuardUserPermissionPeer::DATABASE_NAME);
$criteria->add(sfGuardUserPermissionPeer::USER_ID, $user_id);
$criteria->add(sfGuardUserPermissionPeer::PERMISSION_ID, $permission_id);
$v = sfGuardUserPermissionPeer::doSelect($criteria, $con);
return !empty($v) ? $v[0] : null;
}
示例3: findPk
/**
* Find object by primary key
* <code>
* $obj = $c->findPk(array(12, 34), $con);
* </code>
* @param array[$user_id, $permission_id] $key Primary key to use for the query
* @param PropelPDO $con an optional connection object
*
* @return sfGuardUserPermission|array|mixed the result, formatted by the current formatter
*/
public function findPk($key, $con = null)
{
if (null !== ($obj = sfGuardUserPermissionPeer::getInstanceFromPool(serialize(array((string) $key[0], (string) $key[1])))) && $this->getFormatter()->isObjectFormatter()) {
// the object is alredy in the instance pool
return $obj;
} else {
// the object has not been requested yet, or the formatter is not an object formatter
$criteria = $this->isKeepQuery() ? clone $this : $this;
$stmt = $criteria->filterByPrimaryKey($key)->getSelectStatement($con);
return $criteria->getFormatter()->init($criteria)->formatOne($stmt);
}
}