<?php
/*
* Alliances Manager (Gestionador de Alianzas) - Travian
* Copyright (C) 2008-12 Viva Mayer, Francisco MesÃas <hide@address.com>
*
* 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 <http://www.gnu.org/licenses/>.
*/
class ControlAldeas extends ControlBase
{
public function aldeas()
{
include $this->c_modelos.'ModeloAldeas.php';
$villa = new ModeloAldeas;
$resultado = $villa->propias();
include $this->c_vistas.'aldeas.php';
}
public function borrar()
{
include $this->c_modelos.'ModeloAldeas.php';
$villa = new ModeloAldeas;
$villa->borrar();
}
public function editar()
{
include $this->c_modelos.'ModeloAldeas.php';
$titulo = self::$texto->get('HEAD03');
$accion = "edit_aldea";
$direccion = "?ctrl=Aldeas&mod=editar";
$villa = new ModeloAldeas;
if( isset($_POST['accion']) and $_POST['accion']= "edit_aldea") {
$target = "?ctrl=Aldeas&mod=editar&x=".$_POST['aldeax']."&y=".$_POST['aldeay']."";
$error = $villa->editar();
include $this->c_vistas.'error.php';
}
else {
$aldea = $villa->ver_datos();
include $this->c_vistas.'am_aldeas.php';
}
}
public function nueva()
{
include $this->c_modelos.'ModeloAldeas.php';
$titulo = self::$texto->get('HEAD02');
$accion = "new_aldea";
$direccion = "?ctrl=Aldeas&mod=nueva";
$villa = new ModeloAldeas;
$error = "";
if( isset($_POST['accion']) and $_POST['accion']= "new_aldea") {
$target = "?ctrl=Aldeas&mod=nueva";
$error = $villa->nueva();
include $this->c_vistas.'error.php';
}
else include $this->c_vistas.'am_aldeas.php';
}
public function resumen()
{
include $this->c_modelos.'ModeloAldeas.php';
$village = new ModeloAldeas;
$resumen = $village->resumen();
include $this->c_vistas.'resumen_aldeas.php';
}
} // Fin Clase
?>