本文整理汇总了PHP中Perfil::getId方法的典型用法代码示例。如果您正苦于以下问题:PHP Perfil::getId方法的具体用法?PHP Perfil::getId怎么用?PHP Perfil::getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Perfil
的用法示例。
在下文中一共展示了Perfil::getId方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: apagar
public function apagar(Perfil $objPerfil)
{
$v = $this->_getValidacao();
$v->setRules($objPerfil->getId(), 'required', 'ID');
$v->validar();
return $this->_getRepositorio()->alterar($objPerfil);
}
示例2: visualizar
public function visualizar(Perfil $objPerfil)
{
try {
$this->_stat = $this->_getConn()->prepare('SELECT * FROM tblperfil WHERE per_id = :per_id AND per_excluido = 0 AND per_status = 1');
$this->_stat->bindValue(':per_id', $objPerfil->getId(), \PDO::PARAM_INT);
$this->_stat->execute();
return $this->_getPerfil($this->_stat->fetch(\PDO::FETCH_ASSOC));
} catch (\PDOException $e) {
throw new \model\conexao\Excecao($e->getMessage());
}
}
示例3: addInstanceToPool
/**
* Adds an object to the instance pool.
*
* Propel keeps cached copies of objects in an instance pool when they are retrieved
* from the database. In some cases -- especially when you override doSelect*()
* methods in your stub classes -- you may need to explicitly add objects
* to the cache in order to ensure that the same objects are always returned by doSelect*()
* and retrieveByPK*() calls.
*
* @param Perfil $value A Perfil object.
* @param string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
*/
public static function addInstanceToPool(Perfil $obj, $key = null)
{
if (Propel::isInstancePoolingEnabled()) {
if ($key === null) {
$key = (string) $obj->getId();
}
// if key === null
self::$instances[$key] = $obj;
}
}
示例4: filterByPerfil
/**
* Filter the query by a related Perfil object
*
* @param Perfil|PropelObjectCollection $perfil The related object(s) to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return UsuarioQuery The current query, for fluid interface
* @throws PropelException - if the provided filter is invalid.
*/
public function filterByPerfil($perfil, $comparison = null)
{
if ($perfil instanceof Perfil) {
return $this->addUsingAlias(UsuarioPeer::PERFIL_ID, $perfil->getId(), $comparison);
} elseif ($perfil instanceof PropelObjectCollection) {
if (null === $comparison) {
$comparison = Criteria::IN;
}
return $this->addUsingAlias(UsuarioPeer::PERFIL_ID, $perfil->toKeyValue('PrimaryKey', 'Id'), $comparison);
} else {
throw new PropelException('filterByPerfil() only accepts arguments of type Perfil or PropelCollection');
}
}
示例5: setPerfil
/**
* Declares an association between this object and a Perfil object.
*
* @param Perfil $v
* @return Valoresperado The current object (for fluent API support)
* @throws PropelException
*/
public function setPerfil(Perfil $v = null)
{
if ($v === null) {
$this->setPerfilId(NULL);
} else {
$this->setPerfilId($v->getId());
}
$this->aPerfil = $v;
// Add binding for other direction of this n:n relationship.
// If this object has already been added to the Perfil object, it will not be re-added.
if ($v !== null) {
$v->addValoresperado($this);
}
return $this;
}
示例6: prune
/**
* Exclude object from result
*
* @param Perfil $perfil Object to remove from the list of results
*
* @return PerfilQuery The current query, for fluid interface
*/
public function prune($perfil = null)
{
if ($perfil) {
$this->addUsingAlias(PerfilPeer::ID, $perfil->getId(), Criteria::NOT_EQUAL);
}
return $this;
}