Example #1
0
        echo $anuncio->get_codigo();
        ?>
" readonly="" disabled=""/>
                                                            </div>
                                                        </div>                                                            
                                                    <?php 
    }
    ?>

                                                    <div class="form-group">
                                                        <label for="idTipo" class="col-xs-12 col-sm-3 control-label no-padding-right" style="font-weight: bold;">Finalidade:</label>
                                                        <div class="col-xs-12 col-sm-5">
                                                            <select id="idTipo" class="width-100" name="idTipo">
                                                                <option value="0"> -- Selecione a finalidade -- </option>
                                                                <?php 
    $tipo = new AnuncioTipo(Conf::pegCnxPadrao());
    Utilitarios::preencheComboDB($tipo->getCadastrados(), $anuncio->getIdTipo());
    ?>
                
                                                            </select>
                                                        </div>
                                                    </div>

                                                    <div class="form-group">
                                                        <label for="idImovel" class="col-xs-12 col-sm-3 control-label no-padding-right" style="font-weight: bold;">Imóvel:</label>
                                                        <div class="col-xs-12 col-sm-5">
                                                            <select id="idImovel" class="width-100" name="idImovel">
                                                                <option value="0"> -- Selecione um imóvel -- </option>
                                                                <?php 
    Utilitarios::preencheComboDB($imoveis, $anuncio->getIdImovel());
    ?>
<?php

include_once '../../config.php';
try {
    $anuncioTipo = new AnuncioTipo(Conf::pegCnxPadrao());
    $anuncioTipo->setIdTipo($_POST['idTipo']);
    $anuncioTipo->_delete();
    $retorno = array('status' => 'OK');
} catch (PDOException $e) {
    $retorno = array('status' => 'ERRO');
}
echo json_encode($retorno);
<?php

$status = 'NO';
$resultados = null;
try {
    include_once '../../config.php';
    if (isset($_SESSION['idPessoaProprietario'])) {
        $tipoAnuncio = new AnuncioTipo(Conf::pegCnxPadrao());
        $tipoAnuncio->setDescricao($_POST['consulta']);
        $resultados = $tipoAnuncio->consultar();
        $status = sizeof($resultados) > 0 ? 'OK' : 'NO';
    }
} catch (PDOException $e) {
    $status = 'ERRO';
}
echo json_encode(array('status' => $status, 'resultados' => $resultados));
<?php

$status = 'NO';
$resultados = null;
try {
    include_once '../../config.php';
    if (isset($_SESSION['idPessoaProprietario'])) {
        $tipoAnuncio = new AnuncioTipo(Conf::pegCnxPadrao());
        $tipoAnuncio->_preecheObjeto($_POST['idTipo']);
        $resultados = array(array('idTipo' => $tipoAnuncio->getIdTipo(), 'descricao' => $tipoAnuncio->getDescricao()));
        $status = sizeof($resultados) > 0 ? 'OK' : 'NO';
    }
} catch (PDOException $e) {
    $status = 'ERRO';
}
echo json_encode(array('status' => $status, 'resultados' => $resultados));
<?php

include_once '../../config.php';
try {
    $status = 'ERRO';
    if (isset($_SESSION['idPessoaProprietario'])) {
        $anuncioTipo = new AnuncioTipo(Conf::pegCnxPadrao());
        $anuncioTipo->setDados($_POST);
        $anuncioTipo->_salvar();
        $status = 'OK';
    }
    $retorno = array('status' => $status);
} catch (PDOException $e) {
    $retorno = array('status' => $e);
}
echo json_encode($retorno);