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


PHP ServiceLocator::getUsuarioService方法代碼示例

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


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

示例1: testeReadByCriteria

function testeReadByCriteria()
{
    $criteria = array();
    $criteria[UsuarioCriteria::NOME_LK] = "B";
    $entityArray = ServiceLocator::getUsuarioService()->readByCriteria($criteria);
    foreach ($entityArray as $entity) {
        echo $entity . "<br>";
    }
}
開發者ID:Franciscofc1986,項目名稱:ProjetoGPS,代碼行數:9,代碼來源:TesteUsuarioService.php

示例2: atualizarCadastro

 public function atualizarCadastro()
 {
     if ($this->tipoCliente != null && $this->id > 0) {
         switch ($this->tipoCliente) {
             case TipoCliente::USUARIO:
                 $this->cadastro = ServiceLocator::getUsuarioService()->readById($this->id);
                 break;
             case TipoCliente::RASTREADOR:
                 $this->cadastro = ServiceLocator::getRastreadorService()->readById($this->id);
                 break;
         }
     }
 }
開發者ID:Franciscofc1986,項目名稱:ProjetoGPS,代碼行數:13,代碼來源:ClienteWSRastreador.php

示例3: tratarSolicitacaoDeConexao

 protected function tratarSolicitacaoDeConexao($cabecalho, $socket)
 {
     if ($cabecalho != null && $socket != null) {
         $this->printar("Handshake Recebido:\n{$cabecalho}", true, true);
         preg_match('/(?<=GET \\/)[^\\s]*/', $cabecalho, $aux);
         $parametros = split(';', $aux[0]);
         $tipoCliente = $parametros[0];
         if ($this->validarTipoCliente($tipoCliente)) {
             $cadastro = null;
             switch ($tipoCliente) {
                 case TipoCliente::USUARIO:
                     $login = $parametros[1];
                     $senha = $parametros[2];
                     if ($login != '' && $senha != '') {
                         $criteria = array();
                         $criteria[UsuarioCriteria::LOGIN_EQ] = $login;
                         $criteria[UsuarioCriteria::SENHA_EQ] = $senha;
                         $cadastro = ServiceLocator::getUsuarioService()->readByCriteria($criteria)[0];
                     }
                     break;
                 case TipoCliente::RASTREADOR:
                     $serial = $parametros[1];
                     if ($serial != '') {
                         $criteria = array();
                         $criteria[RastreadorCriteria::SERIAL_EQ] = $serial;
                         $cadastro = ServiceLocator::getRastreadorService()->readByCriteria($criteria)[0];
                     }
                     break;
             }
             if ($cadastro != null) {
                 $clienteWS = $this->clienteWSController->buscarClientePorCadastro($cadastro);
                 if ($clienteWS == null) {
                     $this->executarHandshaking($cabecalho, $socket);
                     $clienteWS = new ClienteWSRastreador();
                     $clienteWS->setTipoCliente($tipoCliente);
                     $clienteWS->setId($cadastro->getId());
                     $clienteWS->setSocket($socket);
                     $clienteWS->setCadastro($cadastro);
                     $this->clienteWSController->adicionarCliente($clienteWS);
                     $this->printar($clienteWS->getCadastro()->getNome() . " se conectou.\n", false, false);
                 } else {
                     $this->printar($clienteWS->getCadastro()->getNome() . " ja esta conectado.\n", false, false);
                 }
             } else {
                 $this->printar("Usuario/Rastreador nao existe na base de dados.\n", false, false);
             }
         } else {
             $this->printar("Tipo de cliente invalido.\n", false, false);
         }
     }
 }
開發者ID:Franciscofc1986,項目名稱:ProjetoGPS,代碼行數:51,代碼來源:ServidorWSRastreador.php

示例4: desvincularUsuarioRastreador

function desvincularUsuarioRastreador()
{
    $usuario = ServiceLocator::getUsuarioService()->readById(3);
    if ($usuario != null) {
        foreach ($usuario->getRastreadorArray() as $rastreador) {
            $criteria = array();
            $criteria[UsuarioRastreadorCriteria::USUARIO_FK_EQ] = $usuario->getId();
            $criteria[UsuarioRastreadorCriteria::RASTREADOR_FK_EQ] = $rastreador->getId();
            $usuarioRastreadorArray = ServiceLocator::getUsuarioRastreadorService()->readByCriteria($criteria);
            foreach ($usuarioRastreadorArray as $usuarioRastreador) {
                echo ServiceLocator::getUsuarioRastreadorService()->delete($usuarioRastreador->getId());
            }
        }
    }
}
開發者ID:Franciscofc1986,項目名稱:ProjetoGPS,代碼行數:15,代碼來源:TestesGerais.php


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