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


PHP Lista::deletar方法代码示例

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


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

示例1: deletar

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

示例2: deletar

 public function deletar(ProdutoMarca $m)
 {
     parent::deletar($m);
     $where = "WHERE " . self::ID . " = '" . $m->getId() . "'";
     Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataProdutoMarcas . $m->getImagem()->nome . '.' . $m->getImagem()->extensao);
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:7,代码来源:ListaProdutoMarcas.php

示例3: deletar

 public function deletar(TicketPost $t)
 {
     parent::deletar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $t->getArquivo()->deleteArquivo();
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:7,代码来源:ListaTicketPosts.php

示例4: deletar

 public function deletar(Banner $t)
 {
     parent::deletar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataBanners . $t->getImagem()->nome . "." . $t->getImagem()->extensao);
     Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataBanners . $t->getFlash());
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:8,代码来源:ListaBanners.php

示例5: deletar

 public function deletar(Musica $t)
 {
     parent::deletar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $arquivo = $t->getMusica()->nome . "." . $t->getMusica()->extensao;
     Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataDiscografia . $arquivo);
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:8,代码来源:ListaMusicas.php

示例6: deletar

 public function deletar(UploadDownloadArquivo $t)
 {
     parent::deletar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $arquivo = $t->getArquivo()->nome . "." . $t->getArquivo()->extensao;
     Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataUploadsDownloads . $arquivo);
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:8,代码来源:ListaUploadDownloadArquivos.php

示例7: deletar

 public function deletar(BannerCategoria $t)
 {
     if ($t->getBanners()->getTotal() > 0) {
         throw new Exception("Está categoria possui banners cadastrados, não foi possível removê-la!");
     } else {
         parent::deletar($t);
         $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
         $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
     }
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:10,代码来源:ListaBannerCategorias.php

示例8: deletar

 public function deletar(Ticket $t)
 {
     parent::deletar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     while ($tP = $t->getPostagens()->listar()) {
         $t->getPostagens()->deletar($tP);
         $t->getPostagens()->setParametros(0);
     }
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:10,代码来源:ListaTickets.php

示例9: deletar

 public function deletar(Galeria $g)
 {
     parent::deletar($g);
     $where = "WHERE " . self::ID . " = '" . $g->getId() . "'";
     while ($img = $g->getImagens()->listar("ASC")) {
         $g->getImagens()->deletar($img);
         $g->getImagens()->setParametros(0);
     }
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:10,代码来源:ListaGalerias.php

示例10: deletar

 public function deletar(Endereco $end)
 {
     parent::deletar($end);
     $where = "WHERE " . self::ID . " = '" . $end->getId() . "'";
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:6,代码来源:ListaEnderecos.php

示例11: deletar

 public function deletar(MusicaCategoria $t)
 {
     parent::deletar($t);
     $where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:6,代码来源:ListaMusicaCategorias.php

示例12: deletar

 public function deletar(Telefone $tel)
 {
     parent::deletar($tel);
     $where = "WHERE " . self::ID . " = '" . $tel->getId() . "'";
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:6,代码来源:ListaTelefones.php

示例13: deletar

 public function deletar(ProdutoCategoria $pC)
 {
     parent::deletar($pC);
     $where = "WHERE " . self::ID . " = '" . $pC->getId() . "'";
     if ($pC->getSubCategorias()->getTotal() > 0) {
         throw new Exception("Está categoria possui subcategorias, não pode ser removida!");
     }
     Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataProdutoCategorias . $pC->getImagem()->nome . '.' . $pC->getImagem()->extensao);
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:10,代码来源:ListaProdutoCategorias.php

示例14: deletar

 public function deletar(Pedido $p)
 {
     parent::deletar($p);
     if ($p->getEndereco()->getId() != '') {
         $lPEE = new ListaPedidoEnderecoEntregas();
         $lPEE->deletar($p->getEndereco());
     }
     $where = "WHERE " . self::ID . " = '" . $p->getId() . "'";
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:10,代码来源:ListaPedidos.php

示例15: deletar

 public function deletar($pes)
 {
     parent::deletar($pes);
     $where = "WHERE id = '" . $pes->getId() . "'";
     while ($end = $pes->getEndereco()->listar()) {
         $pes->getEndereco()->deletar($end);
         $pes->getEndereco()->setParametros(0);
     }
     while ($tel = $pes->getTelefone()->listar()) {
         $pes->getTelefone()->deletar($tel);
         $pes->getTelefone()->setParametros(0);
     }
     while ($email = $pes->getEmail()->listar()) {
         $pes->getEmail()->deletar($email);
         $pes->getEmail()->setParametros(0);
     }
     Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataPessoasPerfil . $pes->getFoto()->nome . "." . $pes->getFoto()->extensao);
     $this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
 }
开发者ID:jhonnybail,项目名称:marktronic,代码行数:19,代码来源:ListaEmpresasOfertaColetiva.php


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