本文整理汇总了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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}