当前位置: 首页>>代码示例>>PHP>>正文


PHP Lista::alterar方法代码示例

本文整理汇总了PHP中Lista::alterar方法的典型用法代码示例。如果您正苦于以下问题:PHP Lista::alterar方法的具体用法?PHP Lista::alterar怎么用?PHP Lista::alterar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Lista的用法示例。


在下文中一共展示了Lista::alterar方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: alterar

 public function alterar(Vendedor $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     if ($t->getImagem()->getImage()->nome != '') {
         $lI = new ListaImagens();
         $lI->caminhoEscrita = Sistema::$caminhoDiretorio . Sistema::$caminhoDataTextos;
         $lI->caminhoLeitura = Sistema::$caminhoURL . Sistema::$caminhoDataTextos;
         $img = $t->getImagem();
         if ($img->getId() != '') {
             $lI->alterar($img);
         } else {
             $t->getImagem()->setSessao($this->getTabela(), $t->getId());
             $lI->inserir($img);
         }
         $t->setImagem($img);
     }
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::IMAGEM, $t->getImagem()->getId(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::NOME, $t->nome, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::EMAIL, $t->email, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::MSN, $t->msn, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::SKYPE, $t->skype, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::VOIP, $t->voip, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TELEFONE, $t->telefone, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::RAMAL, $t->ramal, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::ORDEM, $t->ordem, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:27,代码来源:ListaVendedores.php

示例2: alterar

 public function alterar(Mailing $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::STATUS, $t->getStatus(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::DATA, $t->getData()->mostrar("YmdHi"), $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:7,代码来源:ListaMailings.php

示例3: alterar

 public function alterar(PerguntaCategoria $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TITULO, $t->titulo, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::ORDEM, $t->ordem, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:7,代码来源:ListaPerguntaCategorias.php

示例4: alterar

 public function alterar(UploadDownloadArquivo $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::PRODUTOS, $t->produtos, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::ORDEM, $t->ordem, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:7,代码来源:ListaUploadDownloadArquivos.php

示例5: alterar

 public function alterar(Texto $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     if ($t->getImagem()->getImage()->nome != '') {
         $lI = new ListaImagens();
         $lI->caminhoEscrita = Sistema::$caminhoDiretorio . Sistema::$caminhoDataTextos;
         $lI->caminhoLeitura = Sistema::$caminhoURL . Sistema::$caminhoDataTextos;
         $img = $t->getImagem();
         if ($img->getId() != '') {
             $lI->alterar($img);
         } else {
             $t->getImagem()->setSessao($this->getTabela(), $t->getId());
             $lI->inserir($img);
         }
         $t->setImagem($img);
     }
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::URL, $t->getURL()->getId(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::IMAGEM, $t->getImagem()->getId(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TITULO, $t->titulo, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::SUBTITULO, $t->subTitulo, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TEXTOPEQUENO, str_replace("'", "\\'", $t->textoPequeno), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TEXTO, str_replace("'", "\\'", $t->texto), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::ORDEM, $t->ordem, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:25,代码来源:ListaTextos.php

示例6: alterar

 public function alterar(BannerCategoria $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TITULO, $t->titulo, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::LARGURA, $t->getLargura()->formatar(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::ALTURA, $t->getAltura()->formatar(), $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:8,代码来源:ListaBannerCategorias.php

示例7: alterar

 public function alterar(NoticiaUrgente $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::NOTICIA, $t->noticia, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::ORDEM, $t->ordem, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::DATA, $t->getData()->mostrar("YmdHi"), $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:8,代码来源:ListaNoticiasUrgentes.php

示例8: alterar

 public function alterar(Noticia $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::URL, $t->getURL()->getId(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TEXTO, $t->getTexto()->getId(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::DATA, $t->getData()->mostrar("YmdHi"), $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:8,代码来源:ListaNoticias.php

示例9: alterar

 public function alterar(NoticiaCategoria $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::ORDEM, $t->ordem, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, parent::URL, $t->getURL()->getId(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, parent::TEXTO, $t->getTexto()->getId(), $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:8,代码来源:ListaNoticiaCategorias.php

示例10: alterar

 public function alterar(Email $email)
 {
     parent::alterar($email);
     $where = "WHERE " . self::ID . " = '" . $email->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::DESCRICAO, $email->descricao, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::EMAIL, $email->email, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::PRINCIPAL, $email->principal ? self::VALOR_PRINCIPAL_TRUE : self::VALOR_PRINCIPAL_FALSE, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:8,代码来源:ListaEmails.php

示例11: alterar

 public function alterar(Telefone $tel)
 {
     parent::alterar($tel);
     $where = "WHERE " . self::ID . " = '" . $tel->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::LOCAL, $tel->local, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::DDD, $tel->ddd, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TELEFONE, $tel->telefone, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::RAMAL, $tel->ramal, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:9,代码来源:ListaTelefones.php

示例12: alterar

 public function alterar(Ticket $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $dT = new DataHora();
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::NIVEL, $t->getNivel(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::STATUS, $t->getStatus(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::SATISFACAO, $t->getSatisfacao(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::DATAHORA_ALTERACAO, $dT->mostrar("YmdHi"), $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:10,代码来源:ListaTickets.php

示例13: alterar

 public function alterar(Musica $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     if ($t->getMusica()->nome != "") {
         $arquivo = $t->getMusica()->saveArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataDiscografia);
     }
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TITULO, $t->titulo, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::MUSICA, $arquivo, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::ORDEM, $t->ordem, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:11,代码来源:ListaMusicas.php

示例14: alterar

 public function alterar(TicketPost $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     if ($t->getArquivo()->nome != '') {
         $arquivo = $t->getArquivo()->saveArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataTickets);
     }
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TEXTO, $t->texto, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::NOME, $t->nome, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::ARQUIVO, $arquivo, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:11,代码来源:ListaTicketPosts.php

示例15: alterar

 public function alterar(Recado $t)
 {
     parent::alterar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::SESSAO, $t->getSessao(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::IDSESSAO, $t->getIdSessao(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::TEXTO, $t->getTexto()->getId(), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::DATA, $t->getData()->mostrar("YmdHi"), $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::LOCAL, $t->local, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::NOME, $t->nome, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::EMAIL, $t->email, $where);
     $this->con->alterar(Sistema::$BDPrefixo . $this->tabela, self::LIBERADO, $t->getSituacao() ? self::VALOR_LIBERADO_TRUE : self::VALOR_LIBERADO_FALSE, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:13,代码来源:ListaRecados.php


注:本文中的Lista::alterar方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。