* All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * --> NOTICE <-- * This file is part of the core development branch, changing its contents will * make you unable to use the automatic updates manager. Please refer to the * documentation for further information about customizing Wootook. * */ define('INSIDE' , true); define('INSTALL' , false); require_once dirname(__FILE__) .'/application/bootstrap.php'; $readAdapter = Wootook_Core_Database_ConnectionManager::getSingleton()->getConnection('core_read'); $writeAdapter = Wootook_Core_Database_ConnectionManager::getSingleton()->getConnection('core_write'); $action = isset($_GET['action']) ? $_GET['action'] : null; if ($action == 5) { $writeAdapter->insert() ->into($writeAdapter->getTable('annonce')) ->set('user', $user->getUsername()) ->set('galaxie', $planet->getGalaxy()) ->set('systeme', $planet->getSystem()) ->set('metala', Wootook::getRequest()->getParam('metalvendre')) ->set('cristala', Wootook::getRequest()->getParam('cristalvendre')) ->set('deuta', Wootook::getRequest()->getParam('deutvendre')) ->set('metals', Wootook::getRequest()->getParam('metalsouhait')) ->set('cristals', Wootook::getRequest()->getParam('cristalsouhait')) ->set('deuts', Wootook::getRequest()->getParam('deutsouhait')) ->execute() ; $page2 .= <<

Votre Annonce a bien été enregistrée !


Retour aux annonces

HTML; display($page2); } if ($action != 5) { $statement = $readAdapter->select()->from(array('annonce' => $readAdapter->getTable('annonce')))->order('id', 'DESC')->prepare(); $page2 = "

"; foreach ($statement as $b) { $page2 .= '"; } $page2 .= "
Petites Annonces
Infos de livraisonRessources à vendreRessources souhaitéesAction
VendeurGalaxieSystèmeMétalCristalDeuteriumMétalCristalDeuteriumDelet
'; $page2 .= $b["user"] ; $page2 .= ''; $page2 .= $b["galaxie"]; $page2 .= ''; $page2 .= $b["systeme"]; $page2 .= ''; $page2 .= $b["metala"]; $page2 .= ''; $page2 .= $b["gcristala"]; $page2 .= ''; $page2 .= $b["deuta"]; $page2 .= ''; $page2 .= $b["metals"]; $page2 .= ''; $page2 .= $b["cristals"]; $page2 .= ''; $page2 .= $b["deuts"]; $page2 .= ''; $page2 .= "
Ajouter une Annonce
"; display($page2); }