Example #1
0
 public function addCategoria(NoticiaCategoria $nC)
 {
     if ($nC->getId() != '' && $this->getId() != '') {
         $con = BDConexao::__Abrir();
         $con->executar("INSERT INTO " . Sistema::$BDPrefixo . "relacionamento_noticias_categorias(noticia, categoria) VALUES('" . $this->getId() . "','" . $nC->getId() . "')");
     }
 }
 public function deletar(NoticiaCategoria $t)
 {
     if ($t->getNoticias()->getTotal() > 0) {
         throw new Exception("Está categoria possui noticias cadastradas, 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);
     }
 }
<?php

importar("Utilidades.Noticias.Lista.ListaNoticiaCategorias");
$tituloPagina = 'Utilidades > Noticias > Categorias > Cadastrar';
$iTCNC = new IFAdmin(new Arquivos(Sistema::$adminLayoutCaminhoDiretorio . "/SistemaUtilidades/noticiaCategoria.html"));
$lI = new ListaIdiomas();
if (!empty($_POST)) {
    $erro = '';
    if (empty($_POST['titulo'])) {
        $erro = "<b>Titulo</b> não preenchido!<br><br>";
    }
    if (empty($erro)) {
        $gC = new NoticiaCategoria();
        $gC->ordem = $_POST['ordem'];
        $gC->getTexto()->titulo = $_POST['titulo'];
        $gC->getTexto()->texto = $_POST['descricao'];
        if (!empty($_FILES['imagem']['name'])) {
            $gC->getTexto()->getImagem()->setImage(new Image(Arquivos::__OpenArquivoByTEMP($_FILES['imagem'])));
        }
        $lB = new ListaNoticiaCategorias();
        $lB->inserir($gC);
        $gC->getURL()->setURL($_POST['url'] ? $_POST['url'] : $gC->getId() . "-" . URL::cleanURL($_POST['titulo']));
        $lB->alterar($gC);
        $lT = new ListaTextos();
        while ($i = $lI->listar()) {
            $t = new Traducao();
            $t->setIdConteudo($gC->getTexto()->getId());
            $t->setCampoConteudo(ListaTextos::TITULO);
            $t->setTabelaConteudo($lT->getTabela());
            $t->conteudo = $gC->getTexto()->titulo;
            $t->traducao = $_POST['ititulo'][$i->getId()];