當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Usuario::getNome方法代碼示例

本文整理匯總了PHP中Usuario::getNome方法的典型用法代碼示例。如果您正苦於以下問題:PHP Usuario::getNome方法的具體用法?PHP Usuario::getNome怎麽用?PHP Usuario::getNome使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Usuario的用法示例。


在下文中一共展示了Usuario::getNome方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: inserir

 public function inserir(Usuario $usuario)
 {
     //Objetivo deste metodo é inserir um objeto no banco, fazendo-o ter persistencia.
     //utilizaremos a abstracao do SQL da classe TsqlInstruction
     //1. Foreach dos atributos . PRa cada existencia de atributo é um valor a ser adicionado.
     $instrucao = new TSqlInsert();
     $instrucao->setEntity("usuario");
     if ($usuario->getId() != null) {
         $instrucao->setRowData("id", $usuario->getId());
     }
     if ($usuario->getNome() != null) {
         $instrucao->setRowData("nome", $usuario->getNome());
     }
     if ($usuario->getLogin() != null) {
         $instrucao->setRowData("login", $usuario->getLogin());
     }
     if ($usuario->getSenha() != null) {
         $instrucao->setRowData("senha", $usuario->getSenha());
     }
     echo $instrucao->getInstruction();
     if ($this->Conexao->query($instrucao->getInstruction())) {
         return true;
     } else {
         return false;
     }
 }
開發者ID:joseolinda,項目名稱:escritordesoftware,代碼行數:26,代碼來源:UsuarioDAO.class.php

示例2: alterar

    public function alterar(Usuario $objUsuario)
    {
        try {
            $sqlComplemtento = !is_null($objUsuario->getSenha()) ? 'usu_senha = :usu_senha,' : '';
            $sqlComplemtento2 = !is_null($objUsuario->getPerfil()) ? 'per_id = :per_id, ' : '';
            $this->_stat = $this->_getConn()->prepare('UPDATE tblusuario SET usu_nome = :usu_nome,
																			 usu_email = :usu_email,																			 
																			 ' . $sqlComplemtento . $sqlComplemtento2 . '
																			 usu_login = :usu_login
																			 WHERE usu_id = :usu_id');
            $this->_stat->bindValue(':usu_id', $objUsuario->getId(), \PDO::PARAM_INT);
            $this->_stat->bindValue(':usu_nome', $objUsuario->getNome(), \PDO::PARAM_STR);
            $this->_stat->bindValue(':usu_email', $objUsuario->getEmail(), \PDO::PARAM_STR);
            $this->_stat->bindValue(':usu_login', $objUsuario->getLogin(), \PDO::PARAM_STR);
            if (!is_null($objUsuario->getSenha())) {
                $this->_stat->bindValue(':usu_senha', sha1($objUsuario->getSenha() . USER_HASH), \PDO::PARAM_STR);
            }
            if (!is_null($objUsuario->getPerfil())) {
                $this->_stat->bindValue(':per_id', $objUsuario->getPerfil(), \PDO::PARAM_INT);
            }
            $this->_stat->execute();
            return $this->_getLastInsertId();
        } catch (\PDOException $e) {
            throw new \model\conexao\Excecao($e->getMessage());
        }
    }
開發者ID:ebelmiro,項目名稱:fase,代碼行數:26,代碼來源:Repositorio.php

示例3: salvar

 public function salvar(\Usuario $u)
 {
     $nome = $u->getNome();
     $login = $u->getLogin();
     $senha = $u->getSenha();
     $status = $u->getStatus();
     if ($u->getId()) {
         $id = $u->getId();
         $sql = "update usuario set nome=:nome, login=:login, senha=:senha, status=:status where id=:id";
     } else {
         $id = $this->generateID();
         $u->setId($id);
         $sql = "insert into usuario (id, nome, login, senha, status) values (:id, :nome, :login, :senha, :status)";
     }
     $cnx = Conexao::getConexao();
     $sth = $cnx->prepare($sql);
     $sth->bindParam("id", $id);
     $sth->bindParam("nome", $nome);
     $sth->bindParam("login", $login);
     $sth->bindParam("senha", $senha);
     $sth->bindParam("status", $status);
     try {
         $sth->execute();
         return $u;
     } catch (Exception $exc) {
         echo $exc->getMessage();
     }
 }
開發者ID:aspiraboo,項目名稱:ProjetoPooPhp,代碼行數:28,代碼來源:DaoUsuario.php

示例4: alterar

 public function alterar(Usuario $objUsuario)
 {
     $v = $this->_getValidacao();
     $v->setRules($objUsuario->getId(), 'required', 'ID');
     $v->setRules($objUsuario->getNome(), 'required', 'NOME');
     $v->setRules($objUsuario->getEmail(), 'required', 'EMAIL');
     $v->setRules($objUsuario->getLogin(), 'required', 'LOGIN');
     $v->validar();
     return $this->_getRepositorio()->alterar($objUsuario);
 }
開發者ID:ebelmiro,項目名稱:fase,代碼行數:10,代碼來源:Controlador.php

示例5: qtdDelancesDo

 private function qtdDelancesDo(Usuario $usuario)
 {
     $lances = $this->lances;
     $total = 0;
     foreach ($lances as $todoslances) {
         if ($todoslances->getUsuario()->getNome() == $usuario->getNome()) {
             $total++;
         }
     }
     return $total;
 }
開發者ID:sleite31,項目名稱:TDD-com-PHP,代碼行數:11,代碼來源:Leilao.php

示例6: cadastrarUsuario

 public function cadastrarUsuario(Usuario $usuario)
 {
     $sql = "insert into usuario (nome, senha, email, nivel, exp) values (?,?,?,?,?)";
     $query = $this->conexao->prepare($sql);
     $query->bindParam(1, $usuario->getNome());
     $query->bindParam(2, $usuario->getSenha());
     $query->bindParam(3, $usuario->getEmail());
     $query->bindParam(4, $usuario->getNivel());
     $query->bindParam(5, $usuario->getExp());
     $query->execute();
 }
開發者ID:Cayk,項目名稱:WebService,代碼行數:11,代碼來源:UsuarioDAO.class.php

示例7: insereUsuario

 function insereUsuario(Usuario $usuario)
 {
     $senhaCrypt = md5($usuario->getSenha());
     $query = 'insert into usuarios (email,nome,login,senha,cargo) values(?,?,?,?,?)';
     $stmt = $this->con->prepare($query);
     $stmt->bindValue(1, $usuario->getEmail());
     $stmt->bindValue(2, $usuario->getNome());
     $stmt->bindValue(3, $usuario->getLogin());
     $stmt->bindParam(4, $senhaCrypt);
     $stmt->bindValue(5, $usuario->getCargo());
     return $stmt->execute();
 }
開發者ID:hugovallada,項目名稱:Agendamento,代碼行數:12,代碼來源:UsuarioDAO.php

示例8: inserir

 public function inserir(Usuario $usuario)
 {
     try {
         $sql = "INSERT INTO usuario ( \r\n                    nome,\r\n                    email,\r\n                    concorrer_inscricao)\r\n                    VALUES (\r\n                    :nome,\r\n                    :email,\r\n                    :concorrer_inscricao)";
         //$stmt =  $con = new PDO("mysql:host=localhost;dbname=dbVestibular", "root", "");
         //            $p_sql = Conexao::getInstance()->pre
         $p_sql = Conexao::getInstance()->prepare($sql);
         $p_sql->bindValue(":nome", $usuario->getNome());
         $p_sql->bindValue(":email", $usuario->getEmail());
         $p_sql->bindValue(":concorrer_inscricao", $usuario->getConcorrerInscricao());
         return $p_sql->execute();
         //            header('location:sucesso.php');
     } catch (Exception $e) {
         print "Ocorreu um erro ao tentar executar esta ação, foi gerado um LOG do mesmo, tente novamente mais tarde.";
     }
 }
開發者ID:RafaelCarlos,項目名稱:Vestibular,代碼行數:16,代碼來源:UsuarioDao.php

示例9: adicionar

    public function adicionar(Usuario $objUsuario)
    {
        try {
            $this->_stat = $this->_getConn()->prepare('INSERT INTO tblusuario 
															(usu_nome,usu_email,usu_login,usu_senha,_usu_dataCadastro,usu_dataUltimoAcesso,per_id,usu_status)
															VALUES(:usu_nome,:usu_email,:usu_login,:usu_senha,NOW(),NOW(),:per_id,:usu_status)');
            $this->_stat->bindValue(':usu_nome', $objUsuario->getNome(), \PDO::PARAM_STR);
            $this->_stat->bindValue(':usu_email', $objUsuario->getEmail(), \PDO::PARAM_STR);
            $this->_stat->bindValue(':usu_login', $objUsuario->getLogin(), \PDO::PARAM_STR);
            $this->_stat->bindValue(':usu_senha', $objUsuario->getSenha(), \PDO::PARAM_STR);
            $this->_stat->bindValue(':per_id', $objUsuario->getObjPerfil()->getId(), \PDO::PARAM_INT);
            $this->_stat->bindValue(':usu_status', $objUsuario->getStatus(), \PDO::PARAM_INT);
            $this->_stat->execute();
            return $this->_getConn->lastInsertId();
        } catch (\PDOException $e) {
            throw new \model\conexao\Excecao($e->getMessage());
        }
    }
開發者ID:maap13,項目名稱:fase,代碼行數:18,代碼來源:Repositorio.php

示例10: insert

 public function insert(Usuario $u)
 {
     if ($this->getUsuario($u->getLogin(), $u->getSenha()) == 0) {
         $i = $u->getId();
         $n = $u->getNome();
         $l = $u->getLogin();
         $s = $u->getSenha();
         $e = $u->getEmail();
         if ($stmt = $this->connection->prepare("Insert into `TB_Usuario` (`id_usuario`, `nm_usuario`, `ds_login`, `ds_senha`, `ds_email`) VALUES (?,?,?,?,?)")) {
             //  "sss" retpresenta 3 strings, se fosse  2 string e um interio  seria "ssd"
             $stmt->bind_param("issss", $i, $n, $l, $s, $e);
             $stmt->execute();
             $stmt->close();
             redirect("/painel/usuarios");
         } else {
             echo "<hr>";
             die($this->connection->error);
             echo "<hr>";
         }
     } else {
         echo "Usuario Ja Cadastrado";
     }
 }
開發者ID:vitorgja,項目名稱:Fatec-rl,代碼行數:23,代碼來源:usuarioDAO.php

示例11: Usuario

?>

<?php 
require_once $_SESSION['DOCROOT'] . "/classes/class.usuario.php";
?>

 <span class="titusr">Prêmio Opaleiro do Ano</span>

<?php 
include "traco.php";
$usr = new Usuario($_GET['usr']);
$crt = $_GET['crt'];
?>
	
<span class="titusr">Pontos <?php 
echo $usr->getNome();
?>
</span>
  <table  id="tabform" style="width:100%;">

  <?php 
$lst = $usr->getPontos($crt);
if (count($lst) == 0) {
    include "volta.php";
    echo "</table>";
    include "rodape.php";
    return;
}
$cor = 0;
$vez = 0;
foreach ($lst as $u) {
開發者ID:alencarmo,項目名稱:OCF,代碼行數:31,代碼來源:lst_extrato_pontos.php

示例12:

 </head> 
 
 <title>Self</title> 
 
 <body  data-speed="10" class="bg-Parallax">
 <div id="transparente-div-home" class="fontebase"> 
 


        <table class="table_header" width="100%"  height="60px" border="0" >
        <td align="center" valign="top" class=""> 
            <span class="boas-vindas"><a href="<?php 
echo ROOT_URL;
?>
"> Ol&aacute; <?php 
echo $usuario->getNome();
?>
 
                 =)</a>
            </span>

            <span class="align-right" align="center" valign="top"> 
                <span class="align-right" align="right" style="padding-top:5px" >
                    <?php 
include ROOT . 'view/inc/todasturmas.php';
?>
                </span>
                
                
            <br>
            <div id="menu">
開發者ID:marcosyyz,項目名稱:self,代碼行數:31,代碼來源:vheader_admin.php

示例13: toRecordSet

 function toRecordSet(Usuario $usuario)
 {
     return array($usuario->getId(), $usuario->getUsuario(), $usuario->getSenha(), $usuario->getNome(), $usuario->getEmail(), $usuario->getNivel(), $usuario->getEmpresa()->getId());
 }
開發者ID:BGCX067,項目名稱:facomcrm-svn-to-git,代碼行數:4,代碼來源:UsuarioConverter.php

示例14: salvar

 public function salvar(Usuario $obj)
 {
     $strSQL = "INSERT INTO CAD_USU_USUARIOS(";
     $strSQL .= "GRU_ID, USU_Nome, USU_Login, ";
     $strSQL .= "USU_Senha, USU_Email, ";
     $strSQL .= "USU_Telefone, USU_DataHoraCadastro, ";
     $strSQL .= "USU_Status";
     $strSQL .= ")VALUES (" . $obj->getGrupo()->getId() . ", '" . $obj->getNome() . "', '" . $obj->getLogin() . "', ";
     $strSQL .= "'" . $obj->getSenha() . "', '" . $obj->getEmail() . "', ";
     $strSQL .= "'" . $obj->getTelefone() . "', '" . $obj->getDataHoraCadastro() . "', ";
     $strSQL .= "'" . $obj->getStatus() . "'";
     $strSQL .= ")";
     return Db::getInstance()->executar($strSQL);
 }
開發者ID:lucasmichel,項目名稱:cartorioOnline,代碼行數:14,代碼來源:RepoUsuario.php

示例15: save

 public function save(Usuario $usuario)
 {
     $sql = "insert into biblioteca values(?,?,?,?)";
     $stm = ConexaoMysql::getInstance()->prepare($sql);
     $stm->execute(array($usuario->getId(), $usuario->getCpf(), $usuario->getNome()));
 }
開發者ID:rbecker,項目名稱:Biblioteca,代碼行數:6,代碼來源:usuarioDao.php


注:本文中的Usuario::getNome方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。