| 206 |
lars |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* @package Kein Projekt geladen
|
|
|
5 |
* @author Webagentur Niewerth <tiefland@weban.de>
|
|
|
6 |
* @copyright 2012 Webagentur Niewerth
|
|
|
7 |
* @license propietary http://www.weban.de
|
|
|
8 |
* @version $Rev: 28 $
|
|
|
9 |
* @filesource
|
|
|
10 |
*
|
|
|
11 |
*/
|
|
|
12 |
|
|
|
13 |
/**
|
|
|
14 |
*
|
|
|
15 |
* @package Kein Projekt geladen
|
|
|
16 |
* @author Webagentur Niewerth <tiefland@weban.de>
|
|
|
17 |
* @copyright 2012 Webagentur Niewerth
|
|
|
18 |
*/
|
|
|
19 |
|
|
|
20 |
// SVN: $Id: artikel.php 28 2016-06-06 08:20:58Z tiefland $
|
|
|
21 |
|
|
|
22 |
define( "__SITE__", "marine-sales.de" );
|
|
|
23 |
define( "__SHOP__", "faltradxxs.de" );
|
|
|
24 |
define( "USE_TRANSLATION2", true );
|
|
|
25 |
define( "USE_SMARTY", true );
|
|
|
26 |
define( "__USE_MDB2__", true );
|
|
|
27 |
define( "USE_SMARTY_PAGINATE", false );
|
|
|
28 |
define( "TECHNICAL_DETAILS", true );
|
|
|
29 |
define( "USE_LOGGING", true );
|
|
|
30 |
define( "CONTINUE_ON_ERROR", true );
|
|
|
31 |
|
|
|
32 |
// Zeichensatz angeben
|
|
|
33 |
ini_set( "default_charset", "utf-8" );
|
|
|
34 |
require_once "module/functions.common.php";
|
|
|
35 |
|
|
|
36 |
init_shop();
|
|
|
37 |
|
|
|
38 |
PEAR::setErrorHandling( PEAR_ERROR_CALLBACK, "errorHandlerGlobal" );
|
|
|
39 |
|
|
|
40 |
require_once "module/shop/classes/alias_url.class.php";
|
|
|
41 |
|
|
|
42 |
$a = new alias_url();
|
|
|
43 |
$a->getDirectoryLinks();
|
|
|
44 |
|
|
|
45 |
if ( $a->dupAlias )
|
|
|
46 |
{
|
|
|
47 |
echo "Folgende Aliase waren schon vorhanden und wurden angepasst.<br>";
|
|
|
48 |
echo "<table>";
|
|
|
49 |
foreach ( $a->dupAlias as $data )
|
|
|
50 |
{
|
|
|
51 |
echo "<tr>";
|
|
|
52 |
echo "<td>" . implode( "</td><td>", $data ) . "</td>";
|
|
|
53 |
echo "</tr>";
|
|
|
54 |
//var_dump($data);
|
|
|
55 |
}
|
|
|
56 |
echo "</table>";
|
|
|
57 |
}
|
|
|
58 |
?>
|