Augmenter: hook Augmenters into DataStore and enable augmenting for some Importers
[nonametv.git] / web-admin / main.php
blob45651df60281e0d3cc261e06ddbd715512644b84
1 <?php
3 require "config.php";
4 require "common.php";
5 require "mysql.php";
7 $debug=false;
9 //
10 // connect to main database
12 switch( $dconf['dbtype'] ){
13 case 'mysql':
14 $myc = sql_doconnect();
15 if( !$myc ) exit;
16 break;
20 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
21 <HTML>
22 <HEAD>
23 <TITLE>NonameTV</TITLE>
24 <META http-equiv=Content-Type content="text/html; charset=utf-8" />
25 <LINK href="css/nonametv.css" rel=stylesheet>
26 </HEAD>
28 <BODY text=#000000 vLink=#000099 aLink=#0000ff link=#000099 bgColor=#f0f0f0
29 leftMargin=0 topMargin=0 marginheight="0" marginwidth="0">
31 <?php
33 print "<h1>NonameTV</h1>\n";
37 <h2>Admin section</h2>
38 <p>
39 Use the links in the admin menu section to administrate nonameTV.
40 Keep the access to these scripts controled.
41 </p>
43 <h2>Public section</h2>
44 <p>
45 The links in the public menu section are to be used for
46 public access on your site.
47 </p>
49 <?php
52 // disconnect from main database
54 switch( $dconf['dbtype'] ){
55 case 'mysql':
56 sql_dodisconnect( $myc );
57 break;
62 </BODY>
63 </HTML>