mirror of
https://github.com/ZeJMaN/LBCAlerte_ynh.git
synced 2025-06-07 21:15:29 +02:00
18 lines
312 B
PHP
18 lines
312 B
PHP
<?php
|
|
|
|
use AdService\SiteConfigFactory;
|
|
|
|
if (!isset($_GET["id"])) {
|
|
header("LOCATION: ./?mod=annonce"); exit;
|
|
}
|
|
|
|
$ad = $storage->fetchById($_GET["id"]);
|
|
if (!$ad) {
|
|
header("LOCATION: ./?mod=annonce"); exit;
|
|
}
|
|
|
|
try {
|
|
$ad_config = SiteConfigFactory::factory($ad->getLink());
|
|
} catch (Exception $e) {
|
|
|
|
} |