本文整理汇总了PHP中Usuario::getById方法的典型用法代码示例。如果您正苦于以下问题:PHP Usuario::getById方法的具体用法?PHP Usuario::getById怎么用?PHP Usuario::getById使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Usuario
的用法示例。
在下文中一共展示了Usuario::getById方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: respuestaConsulta
public function respuestaConsulta($array)
{
$obj = (object) $array;
$usuario = Usuario::getById($obj->user_id);
$template = new Template('consulta-response', array('asunto' => $obj->asunto, 'nombre' => $obj->nombre, 'apellido' => $obj->apellido, 'mensaje' => $obj->mensaje, 'fecha' => date('d/m/Y')));
$this->Body = $template->get();
$this->send();
}
示例2: respuestaConsulta
public function respuestaConsulta($array)
{
$obj = (object) $array;
$user = Usuario::getById($obj->user_id);
$mail_user = $user[0]->strEmail;
$mail_seller = Vendedor::EmailById($user[0]->vendedor);
$template = new Template('consulta-response', array('asunto' => $obj->asunto, 'nombre' => $obj->nombre, 'apellido' => $obj->apellido, 'mensaje' => $obj->mensaje));
$this->Body = $template->get();
$this->addAddress($mail_user, '--');
$this->addAddress($mail_seller, '--');
$this->send();
}
示例3: manter
function manter($id = null)
{
$dados = array();
if (!is_null($id)) {
$us = new Usuario();
$dados['dados'] = $us->getById($id);
}
$ca = new Cargo();
$dados['cargos'] = $ca->buscarCargos();
$de = new Departamento();
$dados['departamentos'] = $de->buscarDepartamentos();
$pe = new Perfil();
$dados['perfis'] = $pe->buscarPerfis();
$this->layout = 'default';
//informa qual template utilizar para carregar a view dentro
$this->title = '::: SAD-360 :::';
//informa o titulo da pagina
$this->css = array('Template/template');
//informa o arquivo css a ser carregado com layout da pagina
$this->js = array('Usuario/manter');
//informa o arquivo js com scripts de execução da pagina
$this->load->view('Usuario/manter', $dados);
//carrega a view
}
示例4: Template
<?php
$menu = 0;
include "includes/lock.php";
$tpl = new Template("view/templates/default_bootstrap_lteadmin.html");
$tpl->addFile("CONTENT", "view/usuario/meusdados.html");
include "includes/config.php";
$tpl->HEADER_TITLE = "Gerenciar Meus Dados";
$tpl->HEADER_BREAD_CRUMB = '<li><a href="home-home"><i class="fa fa-home"> </i> Home</a></li>
<li class="active">Meus Dados</li>';
$usu = new Usuario();
$unidade = new Unidade();
$perfil = new Perfil();
$tpl->LABEL = "Editar Meus Dados";
$tpl->ACAO = "meus";
$tpl->IMG_USER = "<img src='img/users/user.png' class='file-preview-image' alt='imagem do usuário' title='imagem do usuário'>";
$usu->getById($_SESSION['zurc.userId']);
$tpl->nome = $usu->nome;
$tpl->email = $usu->email;
$tpl->senha = "";
$tpl->ID_RASH = $usu->md5_encrypt($usu->id);
$tpl->IMG_USER = "img/users/" . $usu->foto;
if (strlen($usu->foto) > 0) {
$tpl->IMG_USER = "<img src='img/users/" . $usu->foto . "' class='file-preview-image' alt='imagem do usuário' title='imagem do usuário''>";
}
$tpl->show();
示例5: Template
<?php
$tpl = new Template("view/templates/login_bootstrap_lteadmin.html");
$tpl->addFile("CONTENT", "view/login/ativar.html");
include "includes/mensagem.php";
$user = new Usuario();
if (isset($_REQUEST['id'])) {
$idUser = $user->md5_decrypt($_REQUEST['id']);
$user->getById($idUser);
if ($user->id == null) {
Message::setMensagem(1);
header("Location:index-login");
exit;
} else {
if ($user->ativo == "0") {
$tpl->idrash = $_REQUEST['id'];
$tpl->email = $user->email;
} else {
Message::setMensagem(11);
header("Location:index-login");
exit;
}
}
} else {
Message::setMensagem(1);
header("Location:index-login");
exit;
}
$tpl->show();
示例6: Usuario
$tpl->HEADER_BREAD_CRUMB = '<li><a href="home-home"><i class="fa fa-home"> </i> Home</a></li>
<li><a href="usuario-main"><i class="fa fa-users"> </i> Usuário</a></li>
<li class="active">Editar</li>';
$usu = new Usuario();
$unidade = new Unidade();
$perfil = new Perfil();
$tpl->LABEL = "Novo Usuário";
$tpl->ACAO = "incluir";
$tpl->id = 0;
$tpl->checksim = "checked='checked'";
$tpl->checknao = "";
$tpl->IMG_USER = "<img src='img/users/user.png' class='file-preview-image' alt='imagem do usuário' title='imagem do usuário'>";
$idUnidadeUsu = 0;
$idPerfilUsu = 0;
if (isset($_REQUEST['id'])) {
$usu->getById($usu->md5_decrypt($_REQUEST['id']));
$tpl->nome = $usu->nome;
$tpl->email = $usu->email;
$tpl->senha = "";
$tpl->id = $_REQUEST['id'];
$idPerfilUsu = $usu->perfil->id;
if ($usu->unidade != null) {
$idUnidadeUsu = $usu->unidade->id;
}
$tpl->IMG_USER = "img/users/" . $usu->foto;
$tpl->LABEL = "Alterar Usuário " . $usu->nome;
$tpl->ACAO = "editar";
if ($usu->ativo == "0") {
$tpl->checknao = "checked='checked'";
$tpl->checksim = "";
}
示例7: Usuario
<?php
include "tupi.inicializar.php";
include "tupi.template.inicializar.php";
$codAcesso = 999;
include "tupi.seguranca.php";
$oUsuario = new Usuario();
$oUsuario->getById($_SESSION['ag_idUsuario']);
$tpl->ACAO = "AlterarDadosPessoais";
$tpl->NOME = $oUsuario->nome;
$tpl->EMAIL = $oUsuario->email;
include "tupi.template.finalizar.php";
示例8: Usuario
</li>
<li>
<a href="#">Cadastro</a> <span class="divider">/</span>
</li>
<li>
<a href="cadastro.usuarios.php">Usuários</a> <span class="divider">/</span>
</li>
<li class="active">Editar Usuário</li>
</ul>';
//recuperacao do usuario
$oUsuario = new Usuario();
$tpl->ACAO = "Incluir";
$idPerfil = 0;
if (isset($_REQUEST['idUsuario'])) {
$oUsuario->getById($oUsuario->md5_Decrypt($_REQUEST['idUsuario']));
$tpl->NOME = $oUsuario->nome;
$tpl->EMAIL = $oUsuario->email;
$tpl->SENHA = $oUsuario->senha;
$idPerfil = $oUsuario->perfil->id;
$tpl->ACAO = "Alterar";
$tpl->ID = $oUsuario->id;
}
//MONTAGEM DOS ACESSO DE MENU
$oPerfil = new Perfil();
$rsPerfis = $oPerfil->getRows();
foreach ($rsPerfis as $key => $perfil) {
$tpl->LABEL_PERFIL = $perfil->descricao;
$tpl->ID_PERFIL = $perfil->id;
if ($perfil->id == $idPerfil) {
$tpl->CHECKED_PERFIL = "selected";
示例9: detalle
public function detalle($id)
{
Session::acceso('admin');
$this->view->setEncabezado("Detalle de usuario");
$usuario = Usuario::getById($id);
if ($usuario) {
$this->view->renderizar("detalle", array("usuario" => $usuario));
} else {
$this->redireccionar('usuario/listado');
}
}