本文整理汇总了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() . "'");
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
}
示例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);
}
示例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);
}
示例10: deletar
public function deletar(Endereco $end)
{
parent::deletar($end);
$where = "WHERE " . self::ID . " = '" . $end->getId() . "'";
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
}
示例11: deletar
public function deletar(MusicaCategoria $t)
{
parent::deletar($t);
$where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
}
示例12: deletar
public function deletar(Telefone $tel)
{
parent::deletar($tel);
$where = "WHERE " . self::ID . " = '" . $tel->getId() . "'";
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
}
示例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);
}
示例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);
}
示例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);
}