Exemplo n.º 1
0
<?php

require_once 'common/header.php';
if (!loggedIn()) {
    header('Location: login.php');
}
if (!isset($_GET['id'])) {
    header('Location: tours.php');
}
$toursCollection = new ToursCollection();
$tour = $toursCollection->getOne($_GET['id']);
if (is_null($tour)) {
    header('Location: tours.php');
}
$toursCollection->delete($tour->getId());
header('Location: tours.php');
Exemplo n.º 2
0
 public function delete()
 {
     if (!$this->loggedIn()) {
         header('Location: index.php?c=login&m=login');
     }
     if (!isset($_GET['id'])) {
         header('Location: index.php?c=tour&m=index');
     }
     $tourCollection = new ToursCollection();
     $tour = $tourCollection->getOne($_GET['id']);
     if (is_null($tour)) {
         header('Location: index.php?c=tour&m=index');
     }
     $tourCollection->delete($tour->getId());
     header('Location: index.php?c=tour&m=index');
 }