-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.php
More file actions
34 lines (28 loc) · 777 Bytes
/
data.php
File metadata and controls
34 lines (28 loc) · 777 Bytes
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
<?php
/*
+---------------------------------------------------------------+
| Enhanced Guestbook for e107 v7xx - by Father Barry
|
| This module for the e107 .7+ website system
| Copyright Barry Keal 2004-2011
|
| Licenced for the use of the purchaser only. This is not free
| software.
|
+---------------------------------------------------------------+
*/
if (!defined('e107_INIT'))
{
require_once("../../class2.php");
}
if ( !is_object( $weewx_obj ) ) {
require_once( 'handlers/weewx_data_class.php' );
$weewx_obj = new weewx_data;
}
$textOut=$weewx_obj->processMain();
if ( $textOut !== null ) {
require_once( HEADERF );
$ns->tablerender( LAN_PLUGIN_WEEWX_MAIN, $textOut );
require_once( FOOTERF );
}
?>