1
|
<?php
|
2
|
/**
|
3
|
* Temporary class to detect invalid instancing
|
4
|
*
|
5
|
* @author wkl
|
6
|
*/
|
7
|
class database {
|
8
|
|
9
|
|
10
|
public function __construct() {
|
11
|
|
12
|
$y = debug_backtrace();
|
13
|
echo '<div style="margin: 100px auto; width: 70%">';
|
14
|
echo '<p style="color: #dd0000; font-weight: bold;">Runtime Error !!</p>';
|
15
|
echo '<p>Ouups... there is a invalid statement found!!</p>';
|
16
|
echo '<p>In File: <b>'.$y[0]['file'].'</b> Line: <b>'.$y[0]['line'].'</b><br />tried to create an invalid <b>'.$y[0]['class'].'</b> - object</p>';
|
17
|
echo '<p>Please contact the module author to solve this problem.</p>';
|
18
|
echo '<p>Also you can get information and help from the ';
|
19
|
echo '<a href="http://www.websitebaker2.org/forum/index.php/board,2.0.html">WebsiteBaker Forum</a></p>';
|
20
|
echo '<hr />';
|
21
|
echo '<p style="color: #dd0000; font-weight: bold;">Runtime Error !!</p>';
|
22
|
echo '<p>Ouups... hier wurde ein ungültiges Kommando gefunden!!</p>';
|
23
|
echo '<p>In Datei: <b>'.$y[0]['file'].'</b> - Zeile: <b>'.$y[0]['line'].'</b><br />es wurde versucht, ein ungültiges <b>'.$y[0]['class'].'</b> - Objekt zu erstellen.</p>';
|
24
|
echo '<p>Bitte kontaktieren Sie den Modulautor um dieses Problem zu lösen.</p>';
|
25
|
echo '<p>Ebenso können sie auch Informationen und Hilfe im ';
|
26
|
echo '<a href="http://www.websitebaker2.org/forum/index.php/board,31.0.html">WebsiteBaker Forum</a> finden.</p>';
|
27
|
echo '</div>';
|
28
|
}
|
29
|
|
30
|
|
31
|
}
|