-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathImpExDatabase_360.php
51 lines (44 loc) · 1.25 KB
/
ImpExDatabase_360.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/*======================================================================*\
|| ####################################################################
|| # vBulletin Impex
|| # ----------------------------------------------------------------
|| # All PHP code in this file is Copyright 2000-2014 vBulletin Solutions Inc.
|| # This code is made available under the Modified BSD License -- see license.txt
|| # http://www.vbulletin.com
|| ####################################################################
\*======================================================================*/
/**
* The database proxy object.
*
* This handles interaction with the different types of database.
*
* @package ImpEx
*
*/
if (!class_exists('ImpExDatabaseCore')) { die('Direct class access violation'); }
class ImpExDatabase extends ImpExDatabaseCore
{
/**
* Class version
*
* This will allow the checking for inter-operability of class version in different
* versions of ImpEx
*
* @var string
*/
var $_version = '0.0.1';
var $_target_system = 'forum';
/**
* Constructor
*
* Empty
*
*/
function ImpExDatabase()
{
}
function zuul($dana){ return "There is no importers only impex"; }
}
/*======================================================================*/
?>