Exemplo n.º 1
0
<?php

$usuario_core->validateUser();
$usuario = $usuario_core->getUsuario();
$hoteles = getHotelesByUsuario($usuario->id);
echo '1';
if (isset($_GET['id'])) {
    $promo = getPromocionPalabrasClave($_GET['id']);
    $edit = true;
    $smarty->assign('promocion', $promo);
    $hoteles = getHotelesByUsuario($promo->usuarioId);
    foreach ($promo->hoteles as $hp) {
        foreach ($hoteles as $k => $h) {
            if ($h->id == $hp->id) {
                $hoteles[$k]->selected = true;
                break;
            }
        }
    }
} else {
    $smarty->assign('usuarioId', $usuario->id);
    $edit = false;
}
$smarty->assign('edit', $edit);
$smarty->assign('hoteles', $hoteles);
$smarty->display('admin/promocion/gestion.tpl');
Exemplo n.º 2
0
<?php

$usuario_core->validateUser();
require 'Logic/afiliado.php';
$hoteles = getHotelesByUsuario($usuario_core->getUsuario()->id);
$productos = getEventos();
$monedas = getAllMonedas();
$idiomas = getAllIdiomas();
if (isset($_GET["id"])) {
    $afiliado = getAfiliado($_GET["id"]);
    if ($afiliado->hoteles && count($afiliado->hoteles)) {
        foreach ($afiliado->hoteles as $c) {
            foreach ($hoteles as $hotel) {
                if ($hotel->id == $c->hotelId) {
                    $hotel->selected = true;
                }
            }
        }
    }
    if ($afiliado->eventos && count($afiliado->eventos)) {
        foreach ($afiliado->eventos as $c) {
            foreach ($productos as $evento) {
                if ($evento->id == $c->eventoId) {
                    $evento->selected = true;
                }
            }
        }
    }
    $smarty->assign('afiliado', $afiliado);
    $smarty->assign('edit', true);
} else {
Exemplo n.º 3
0
function completarCampania($idUsuario, $data_hotel, $data_empresa, $data_direccion, $idiomas, $monedas, $promociones)
{
    try {
        $transaction = new Transaction();
        $empresas = getEmpresasByUsuario($idUsuario);
        $empresa = $empresas[0];
        $emp = updateEmpresa($empresa->id, $data_empresa, $data_direccion, false);
        if (!$emp) {
            throw new Exception('No se guardaron los datos de la empresa');
        }
        $hoteles = getHotelesByUsuario($idUsuario);
        $idHotel = $hoteles[0]->id;
        $hotel = DAOFactory::getHotelDAO()->prepare($data_hotel, $idHotel);
        DAOFactory::getHotelDAO()->update($hotel);
        getClaveByHotel($idHotel);
        DAOFactory::getHotelIdiomaDAO()->deleteByHotelId($idHotel);
        if (count($idiomas)) {
            foreach ($idiomas as $idioma) {
                $id = DAOFactory::getHotelIdiomaDAO()->prepare(array('hotelId' => $idHotel, 'idiomaId' => $idioma));
                DAOFactory::getHotelIdiomaDAO()->insert($id);
            }
        }
        DAOFactory::getHotelMonedaDAO()->deleteByHotelId($idHotel);
        if (count($monedas)) {
            foreach ($monedas as $moneda) {
                $mon = DAOFactory::getHotelMonedaDAO()->prepare(array('hotelId' => $idHotel, 'monedaId' => $moneda));
                DAOFactory::getHotelMonedaDAO()->insert($mon);
            }
        }
        DAOFactory::getPromocionDAO()->deleteByHotelId($idHotel);
        foreach ($promociones as $data_promocion) {
            $data_promocion['hotelId'] = $idHotel;
            $promocion = DAOFactory::getPromocionDAO()->prepare($data_promocion);
            DAOFactory::getPromocionDAO()->insert($promocion);
        }
        $usuario = DAOFactory::getUsuarioDAO()->prepare(array('status' => 'activo'), $idUsuario);
        DAOFactory::getUsuarioDAO()->update($usuario);
        $transaction->commit();
        return true;
    } catch (Exception $e) {
        var_dump($e);
        if ($transaction) {
            $transaction->rollback();
        }
        return false;
    }
}