当前位置: 首页>>代码示例>>PHP>>正文


PHP Perfil::getId方法代码示例

本文整理汇总了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);
 }
开发者ID:ebelmiro,项目名称:fase,代码行数:7,代码来源:Controlador.php

示例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());
     }
 }
开发者ID:ebelmiro,项目名称:fase,代码行数:11,代码来源:Repositorio.php

示例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;
     }
 }
开发者ID:qwerfaqs,项目名称:psicotest,代码行数:22,代码来源:BasePerfilPeer.php

示例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');
     }
 }
开发者ID:kcornejo,项目名称:usac,代码行数:22,代码来源:BaseUsuarioQuery.php

示例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;
 }
开发者ID:qwerfaqs,项目名称:psicotest,代码行数:22,代码来源:BaseValoresperado.php

示例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;
 }
开发者ID:kcornejo,项目名称:usac,代码行数:14,代码来源:BasePerfilQuery.php


注:本文中的Perfil::getId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。