本文整理汇总了PHP中usuario类的典型用法代码示例。如果您正苦于以下问题:PHP usuario类的具体用法?PHP usuario怎么用?PHP usuario使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了usuario类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
function index()
{
$admin = new usuario();
$esAdmin = $admin->esAdm();
$this->registry->template->esAdmin = $esAdmin;
$this->rol = new tab_rol();
$resul = $this->rol->dbselectBySQL("SELECT rol_titulo \r\n FROM tab_rol \r\n WHERE rol_id = " . VAR3);
if (count($resul)) {
$codigo = $resul[0]->rol_titulo;
} else {
$codigo = "";
}
$this->registry->template->fle_id = "";
$this->registry->template->rol_titulo = $codigo;
$this->registry->template->PATH_WEB = PATH_WEB;
$this->registry->template->PATH_DOMAIN = PATH_DOMAIN;
$this->registry->template->PATH_EVENT = "add";
$this->registry->template->GRID_SW = "false";
$this->registry->template->FORM_SW = "display:none;";
$this->registry->template->PATH_J = "jquery";
$this->menu = new menu();
$this->liMenu = $this->menu->imprimirMenu(VAR1, $_SESSION['USU_ID']);
$this->registry->template->men_titulo = $this->liMenu;
$this->registry->template->show('headerG');
$this->registry->template->show('flujo_estado/tab_flujo_estadog.tpl');
$this->registry->template->show('footer');
}
示例2: index
function index()
{
$admin = new usuario();
$esAdmin = $admin->esAdm();
$this->registry->template->esAdmin = $esAdmin;
$this->unidad = new tab_unidad();
$resul = $this->unidad->dbselectBySQL("SELECT uni_descripcion \r\n FROM tab_unidad \r\n WHERE uni_id = " . VAR3);
if (count($resul)) {
$codigo = $resul[0]->uni_descripcion;
} else {
$codigo = "";
}
$this->registry->template->car_id = "";
$this->registry->template->uni_descripcion = $codigo;
$this->registry->template->PATH_WEB = PATH_WEB;
$this->registry->template->PATH_DOMAIN = PATH_DOMAIN;
$this->registry->template->PATH_EVENT = "add";
$this->registry->template->GRID_SW = "false";
$this->registry->template->FORM_SW = "display:none;";
$this->registry->template->PATH_J = "jquery";
$this->menu = new menu();
$this->liMenu = $this->menu->imprimirMenu(VAR1, $_SESSION['USU_ID']);
$this->registry->template->men_titulo = $this->liMenu;
$this->registry->template->show('headerG');
$this->registry->template->show('cargo/tab_cargog.tpl');
$this->registry->template->show('footer');
}
示例3: newAction
public function newAction()
{
//-- Obtenemos el request que contendrá los datos
$request = $this->getRequest();
$usuario = new usuario();
$usuario->setRol('socio');
$usuario->setAlta(0);
$form = $this->createForm(new UserType(), $usuario);
//-- En caso de que el request haya sido invocado por POST
// procesaremos el formulario
if ($request->getMethod() == 'POST') {
//-- Pasamos el request el método bindRequest() del objeto
// formulario el cual obtiene los datos del formulario
// y los carga dentro del objeto Article que está contenido
// también dentro del objeto Type
$form->bindRequest($request);
//-- Con esto nuestro formulario ya es capaz de decirnos si
// los dato son válidos o no y en caso de ser así
if ($form->isValid()) {
$em = $this->getDoctrine()->getEntityManager();
$em->persist($usuario);
$em->flush();
}
}
return $this->render('SWAppBundle:User:new.html.twig', array('form' => $form->createView()));
}
示例4: buscaPublicaciones
function buscaPublicaciones()
{
if (!isset($_SESSION["id"])) {
session_start();
}
$usua = new usuario($_POST["id"]);
$pagina = 1;
if (!isset($_POST["pagina"])) {
$publicaciones = $usua->getPublicaciones(1);
} else {
$publicaciones = $usua->getPublicaciones(1, $_POST["pagina"]);
}
$ac = 0;
foreach ($publicaciones as $key => $valor) {
if ($_POST["palabra"] == "") {
$mostrar = "block";
} elseif (strpos(strtoupper($valor["titulo"]), strtoupper($_POST["palabra"])) !== false) {
$mostrar = "block";
} else {
$mostrar = "none";
}
$ac++;
$publi = new publicaciones($valor["id"]);
$estado = $usua->getEstado();
$cadena = "\n\t\t\t\t\t\t\t\t\t\t<div class='general' id='general" . $valor["id"] . "' name='general" . $valor["id"] . "' data-titulo='{$valor["titulo"]}' data-id='{$valor["id"]}' style='display:{$mostrar}'>\n\t\t\t\t\t\t\t\t\t\t\t<div class=' col-xs-12 col-sm-12 col-md-12 col-lg-12 marT20'></div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=' col-xs-12 col-sm-6 col-md-2 col-lg-2 ' ><!-- inicio del registro de la publicacion-->\n\t\t\t\t\t\t\t\t \t\t<div class='marco-foto-conf point marL20 ' style='height:130px; width: 130px;' >\n\t\t\t\t\t\t\t\t\t \t<div style='position:absolute; left:40px; top:10px; ' class='f-condicion'>" . $publi->getCondicion() . "</div>\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\t\t \t<img src='" . $publi->getFotoPrincipal() . "' class='img img-responsive center-block img-apdp imagen' data-id='" . $valor["id"] . "'>\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=' col-xs-12 col-sm-6 col-md-7 col-lg-7'>\n\t\t\t\t\t\t\t\t\t\t<p class='t16 marL10 marT5'>\n\t\t\t\t\t\t\t\t\t\t <span class=' t15'><a class='negro' href='detalle.php?id=" . $publi->id . "' class='grisO'><b>" . $publi->titulo . "</b></a></span>\n\t\t\t\t\t\t\t\t\t\t\t<br>\n\t\t\t\t\t\t\t\t\t\t\t<span class=' vin-blue t14'><a href='' class=''><b>" . $usua->a_seudonimo . "</b></a></span>\n\t\t\t\t\t\t\t\t\t\t\t<br>\n\t\t\t\t\t\t\t\t\t\t\t<span class='t14 grisO '>" . $usua->getNombre() . "</span>\n\t\t\t\t\t\t\t\t\t\t\t<br>\n\t\t\t\t\t\t\t\t\t\t\t<span class='t12 grisO '><i class='glyphicon glyphicon-time t14 opacity'></i>" . $publi->getTiempoPublicacion() . "</span>\n\t\t\t\t\t\t\t\t\t\t\t<br>\n\t\t\t\t\t\t\t\t\t\t\t<span class='t11 grisO'> <span> <i class='fa fa-eye negro opacity'></i></span><span class='marL5'> " . $publi->getVisitas() . " Visitas</span><i class='fa fa-thumbs-up negro marL15 opacity'>\n\t\t\t\t\t\t\t\t\t\t\t</i><span class=' h-under marL5'>" . $publi->getFavoritos() . " Me gusta</span><i class='fa fa-share-alt negro marL15 opacity hidden'></i> <span class=' hidden point h-under marL5'>15 Veces compartido</span> </span>\n\t\t\t\t\t\t\t\t </p>\n\t\t\t\t\t\t\t\t </div>\n\t\t\t\t\t\t\t\t <div class=' col-xs-12 col-sm-12 col-md-3 col-lg-3 text-right'>\n\t\t\t\t\t\t\t\t \t<br>\n\t\t\t\t\t\t\t\t \t<div class='marR20'>\n\t\t\t\t\t\t\t\t \t\t<span class='red t20'><b>" . $publi->getMonto() . "</b></span >\n\t\t\t\t\t\t\t\t\t\t\t<br>\n\t\t\t\t\t\t\t\t\t\t\t<span class=' t12'>" . $estado . "</span>\n\t\t\t\t\t\t\t\t\t\t\t<br>\n\t\t\t\t\t\t\t\t\t\t\t<span class='vin-blue t16'><a href='detalle.php?id=" . $valor["id"] . "' style='text-decoration:underline;'>Ver Mas</a></span >\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t<div class='col-xs-12 col-sm-12 col-md-12 col-lg-2'><br></div>\n\t\t\t\t\t\t\t\t\t<div class='col-xs-12 col-sm-12 col-md-12 col-lg-12'><hr class='marR10'><br></div> </div><!-- inicio del registro de la publicacion-->";
echo $cadena;
}
}
示例5: index
function index()
{
$admin = new usuario();
$esAdmin = $admin->esAdm();
$this->registry->template->esAdmin = $esAdmin;
$this->pasaje_viatico = new tab_pasaje_viatico();
$resul = $this->pasaje_viatico->dbselectBySQL("SELECT pav_nromemo\r\n FROM tab_pasaje_viatico\r\n WHERE pav_id = " . VAR3);
if (count($resul)) {
$codigo = $resul[0]->pav_nromemo;
} else {
$codigo = "";
}
$this->registry->template->pav_nromemo = $codigo;
$this->registry->template->mav_id = "";
$this->registry->template->PATH_WEB = PATH_WEB;
$this->registry->template->PATH_DOMAIN = PATH_DOMAIN;
$this->registry->template->PATH_EVENT = "add";
$this->registry->template->GRID_SW = "false";
$this->registry->template->FORM_SW = "display:none;";
$this->registry->template->PATH_J = "jquery";
$this->menu = new menu();
$this->liMenu = $this->menu->imprimirMenu(VAR1, $_SESSION['USU_ID']);
$this->registry->template->men_titulo = $this->liMenu;
$this->registry->template->show('headerG');
$this->registry->template->show('pasaje_viatico/tab_matriz_viajeg.tpl');
$this->registry->template->show('footer');
}
示例6: index
function index()
{
$admin = new usuario();
$esAdmin = $admin->esAdm();
$this->registry->template->esAdmin = $esAdmin;
$this->provincia = new tab_provincia();
$resul = $this->provincia->dbselectBySQL("SELECT dep_id, \r\n pro_nombre\r\n FROM tab_provincia \r\n WHERE pro_id = " . VAR3);
if (count($resul)) {
$codigo = $resul[0]->pro_nombre;
$dep_id = $resul[0]->dep_id;
} else {
$codigo = "";
}
$this->registry->template->loc_id = "";
$this->registry->template->dep_id = $dep_id;
$this->registry->template->pro_nombre = $codigo;
$this->registry->template->PATH_WEB = PATH_WEB;
$this->registry->template->PATH_DOMAIN = PATH_DOMAIN;
$this->registry->template->PATH_EVENT = "add";
$this->registry->template->GRID_SW = "false";
$this->registry->template->FORM_SW = "display:none;";
$this->registry->template->PATH_J = "jquery";
$this->menu = new menu();
$this->liMenu = $this->menu->imprimirMenu(VAR1, $_SESSION['USU_ID']);
$this->registry->template->men_titulo = $this->liMenu;
$this->registry->template->show('headerG');
$this->registry->template->show('ciudad/tab_localidadg.tpl');
$this->registry->template->show('footer');
}
示例7: validar
function validar($username, $pass)
{
foreach (glob("DAT/*.php") as $filename) {
include $filename;
}
$res_sql = validar_user($username, $pass);
$cpin = mysqli_num_rows($res_sql);
$row_user = mysqli_fetch_array($res_sql);
if ($cpin > 0) {
$usuario = new usuario();
$usuario->__construct2($row_user['id_usuario'], $username, $pass, $row_user['rol']);
session_start();
$_SESSION["cuenta"] = $usuario->get_id();
$_SESSION["user"] = $usuario->get_username();
$_SESSION["acceso"] = $usuario->get_rol();
//echo "hola".$_SESSION["acceso"];
switch ($_SESSION["acceso"]) {
case '1':
header("Location:index_admin.php");
break;
case '2':
header("Location:index_estudiante.php");
break;
case '3':
header("Location:index_docente.php");
break;
default:
break;
}
} else {
echo "<div align=center><notif>Usuario o clave incorrecta</notif></div>";
}
}
示例8: populaUsuario
public function populaUsuario($row)
{
$usuario = new usuario();
$usuario->setUsername($row['username']);
$usuario->setNome($row['nome']);
$usuario->setSenha($row['senha']);
return $usuario;
}
示例9: getUsuario
function getUsuario($id)
{
$user = new usuario();
$res = $user->Load($id);
if (!$res) {
return false;
}
return $user;
}
示例10: cadastrar
function cadastrar(usuario $entUsuario)
{
try {
$stmt = $this->pdo->prepare("INSERT INTO usuario VALUES ('', :us_nome, :us_email, :us_sexo, :us_data, :us_hora, :us_ip)");
$param = array(":us_nome" => $entUsuario->getUs_nome(), ":us_email" => $entUsuario->getUs_email(), ":us_sexo" => $entUsuario->getUs_sexo(), ":us_data" => date("Y/m/d"), ":us_hora" => date("h:i:s"), ":us_ip" => $_SERVER["REMOTE_ADDR"]);
return $stmt->execute($param);
} catch (PDOException $ex) {
echo "ERRO 01: {$ex->getMessage()}";
}
}
示例11: datos
function datos($codigo)
{
$objeto = new usuario();
$objeto->datosusuario($codigo);
$resp = new xajaxResponse();
$resp->addassign("id_usu", "value", $objeto->id_usu);
$resp->addassign("nombre", "value", $objeto->nombre);
$resp->addassign("email", "value", $objeto->email);
$resp->addassign("password", "value", $objeto->password);
return $resp;
}
示例12: excluir
public function excluir()
{
$id = $this->md5_Decrypt($_REQUEST['id']);
$olc = new usuario();
$qtc = $olc->getNumRows(array("unidade" => " = " . $id));
if ($qtc == 0) {
$this->delete($id);
$_SESSION['zurc.mensagem'] = 22;
} else {
$_SESSION['zurc.mensagem'] = 21;
}
}
示例13: excluir
public function excluir()
{
$oAcesso = new Acesso();
$idU = $this->md5_Decrypt($_REQUEST['idPerfil']);
$olc = new usuario();
$qtc = $olc->getNumRows(array("perfil" => " = " . $idU));
if ($qtc == 0) {
$oAcesso->limparAcessos($idU);
$this->delete($idU);
$_SESSION['tupi.mensagem'] = 8;
} else {
$_SESSION['tupi.mensagem'] = 9;
}
}
示例14: authenticate
public function authenticate()
{
$username = strtolower($this->username);
$user = usuario::model()->find('LOWER(username)=?', array($username));
if ($user === null) {
$this->errorCode = self::ERROR_USERNAME_INVALID;
} else {
if (!$user->validatePassword($this->password)) {
$this->errorCode = self::ERROR_PASSWORD_INVALID;
} else {
$this->_id = $user->idusuario;
$this->username = $user->username;
$this->errorCode = self::ERROR_NONE;
/* Consultamos los datos del usuario por el username ($user->username) */
$info_usuario = Usuario::model()->find('LOWER(username)=?', array($user->username));
/* En las vistas tendremos disponibles last_login y perfil pueden setear las que requieran */
// $this->setState('last_login',$info_usuario->last_login);
// $this->setState('perfil',$info_usuario->perfil);
/*
* Actualizamos el last_login del usuario que se esta autenticando ($user->username)
* $sql = "update usuario set last_login = now() where username='$user->username'";
* $connection = Yii::app() -> db;
* $command = $connection -> createCommand($sql);
* $command -> execute();
*/
}
}
return $this->errorCode == self::ERROR_NONE;
}
示例15: getUsuario
/**
* busca un usuario en la base de datos y lo devuelve si este existe
* sino existe devolvera null
*/
public function getUsuario($id)
{
if (!isset($id)) {
return null;
}
try {
$object = new usuario();
$object->charge($id);
if ($object->getId() == 0) {
return null;
}
} catch (Exception $e) {
//print "¡Error!: " . $e->getMessage() . "<br/>";
return null;
}
return $object;
}