コード例 #1
0
ファイル: Controlador.php プロジェクト: ebelmiro/fase
 public function apagar(Perfil $objPerfil)
 {
     $v = $this->_getValidacao();
     $v->setRules($objPerfil->getId(), 'required', 'ID');
     $v->validar();
     return $this->_getRepositorio()->alterar($objPerfil);
 }
コード例 #2
0
ファイル: Repositorio.php プロジェクト: ebelmiro/fase
 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
0
ファイル: BasePerfilPeer.php プロジェクト: qwerfaqs/psicotest
 /**
  * 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
0
ファイル: BaseUsuarioQuery.php プロジェクト: kcornejo/usac
 /**
  * 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
0
 /**
  * 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
0
ファイル: BasePerfilQuery.php プロジェクト: kcornejo/usac
 /**
  * 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;
 }