include_once "../Librerias/Variables.php"; $conn = new Datasource($dbhost, $dbName, $dbUser, $dbPassword); $adao = new ArtesanoDao(); $pdao = new ProductoDao(); $artesano = new Artesano(); if (!isset($_SESSION["USER"])) { ?> <script type="text/javascript"> alert("No tienes permiso para ver este contenido"); </script> <META http-equiv="Refresh" content="0,url=index.php"> <?php } else { $artesano = $adao->getObject($conn, $_SESSION["ID"]); $busqueda = new Producto(); $busqueda->setIdartesano($_SESSION["ID"]); $busqueda->setAceptado(1); $lista = $pdao->searchMatching($conn, $busqueda); $producto = $lista[0]; ?> <!DOCTYPE html> <html> <head> <title>Manos de Oro - Inicio</title> <link rel="apple-touch-icon" sizes="57x57" href="../imgs/icono/apple-icon-57x57.png"> <link rel="apple-touch-icon" sizes="60x60" href="../imgs/icono/apple-icon-60x60.png"> <link rel="apple-touch-icon" sizes="72x72" href="../imgs/icono/apple-icon-72x72.png"> <link rel="apple-touch-icon" sizes="76x76" href="../imgs/icono/apple-icon-76x76.png"> <link rel="apple-touch-icon" sizes="114x114" href="../imgs/icono/apple-icon-114x114.png">
@session_start(); include_once "../Librerias/Datasource.php"; include_once "../Librerias/ArtesanoDao.php"; include_once "../Librerias/Artesano.php"; include_once "../Librerias/ProductoDao.php"; include_once "../Librerias/Producto.php"; include_once "../Librerias/Variables.php"; $conn = new Datasource($dbhost, $dbName, $dbUser, $dbPassword); $idartesano = $_POST["ID"]; $descripcion = $_POST["descripcion"]; $enlace = $_POST["enlace"]; $nroenvio = $_POST["nroenvio"]; $empresa = $_POST["empresa"]; $producto = new Producto(); $pdao = new ProductoDao(); $producto->setIdartesano($idartesano); $producto->setAceptado(0); $producto->setNotificado(0); $producto->setDescripcion($descripcion); $producto->setLink($enlace); $producto->setEmpresa($empresa); $producto->setNroenvio($nroenvio); $producto->setStock(0); $producto->setVentas(0); $producto->setFormatofoto(0); $producto->setPrecio(0); $producto->setMostrar($_POST["mostrar"]); if ($pdao->create($conn, $producto)) { ?> <meta http-equiv="REFRESH" CONTENT="0,url=../Interfaces/principal.php"> <script type="text/javascript">
$artesano = new Artesano(); if (!isset($_SESSION["USER"])) { ?> <script type="text/javascript"> alert("No tienes permiso para ver este contenido"); </script> <META http-equiv="Refresh" content="0,url=index.php"> <?php } else { if ($_SESSION["ROL"] == "Artesano") { $artesano->setIdArtesano($_SESSION["ID"]); $list = $adao->searchMatching($conn, $artesano); $artesano = $list[0]; $artesano = $adao->encodificaraUTF($artesano); $busqueda = new Producto(); $busqueda->setIdartesano($artesano->getIdartesano()); $busqueda->setNotificado(0); $productos = $pdao->searchMatching($conn, $busqueda); $ver = false; $estado = false; ?> <!DOCTYPE html> <html> <head> <title>Manos de Oro - Inicio</title> <link rel="apple-touch-icon" sizes="57x57" href="../imgs/icono/apple-icon-57x57.png"> <link rel="apple-touch-icon" sizes="60x60" href="../imgs/icono/apple-icon-60x60.png"> <link rel="apple-touch-icon" sizes="72x72" href="../imgs/icono/apple-icon-72x72.png">
/** * Clone will return identical deep copy of this valueObject. * Note, that this method is different than the clone() which * is defined in java.lang.Object. Here, the retuned cloned object * will also have all its attributes cloned. */ function cloneObject() { $cloned = new Producto(); $cloned->setIdproducto($this->idproducto); $cloned->setNombproducto($this->nombproducto); $cloned->setDescripcion($this->descripcion); $cloned->setLink($this->link); $cloned->setIdartesano($this->idartesano); $cloned->setAceptado($this->aceptado); $cloned->setEmpresa($this->empresa); $cloned->setNroenvio($this->nroenvio); $cloned->setNotificado($this->notificado); $cloned->setStock($this->stock); $cloned->setVentas($this->ventas); $cloned->setFormatofoto($this->formatofoto); $cloned->setPrecio($this->precio); $cloned->setMostrar($this->mostrar); return $cloned; }