Subversion Repositories svnkaklik

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
6 kaklik 1
<?php
2
// +-----------------------------------------------------------------------+
3
// | PhpWebGallery - a PHP based picture gallery                           |
4
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5
// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
6
// +-----------------------------------------------------------------------+
7
// | branch        : BSF (Best So Far)
8
// | file          : $RCSfile: admin_phpinfo.php,v $
9
// | last update   : $Date: 2005/01/07 23:10:51 $
10
// | last modifier : $Author: plg $
11
// | revision      : $Revision: 1.5 $
12
// +-----------------------------------------------------------------------+
13
// | This program is free software; you can redistribute it and/or modify  |
14
// | it under the terms of the GNU General Public License as published by  |
15
// | the Free Software Foundation                                          |
16
// |                                                                       |
17
// | This program is distributed in the hope that it will be useful, but   |
18
// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20
// | General Public License for more details.                              |
21
// |                                                                       |
22
// | You should have received a copy of the GNU General Public License     |
23
// | along with this program; if not, write to the Free Software           |
24
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25
// | USA.                                                                  |
26
// +-----------------------------------------------------------------------+
27
 
28
if( !defined("PHPWG_ROOT_PATH") )
29
{
30
	die ("Hacking attempt!");
31
}
32
 
33
include_once( PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php' );
34
 
35
ob_start(); 
36
phpinfo(INFO_GENERAL | INFO_CONFIGURATION | INFO_MODULES | INFO_VARIABLES); 
37
$phpinfo = ob_get_contents(); 
38
ob_end_clean(); 
39
 
40
// Get used layout
41
$layout = (preg_match('#bgcolor#i', $phpinfo)) ? 'old' : 'new';
42
$output='';
43
// Here we play around a little with the PHP Info HTML to try and stylise
44
// it along phpBB's lines ... hopefully without breaking anything. The idea
45
// for this was nabbed from the PHP annotated manual
46
preg_match_all('#<body[^>]*>(.*)</body>#siU', $phpinfo, $output); 
47
 
48
switch ($layout)
49
{
50
  case 'old':
51
    $output = preg_replace('#<table#', '<table class="table2"', $output[1][0]);
52
    $output = preg_replace('# bgcolor="\#(\w){6}"#', '', $output);
53
    $output = preg_replace('#(\w),(\w)#', '\1, \2', $output);
54
    $output = preg_replace('#border="0" cellpadding="3" cellspacing="1" width="600"#', 'border="0" cellspacing="1" cellpadding="4" width="95%"', $output);
55
    $output = preg_replace('#<tr valign="top"><td align="left">(.*?<a .*?</a>)(.*?)</td></tr>#s', '<tr class="row1"><td style="{background-color: #9999cc;}"><table width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td style="{background-color: #9999cc;}">\2</td><td style="{background-color: #9999cc;}">\1</td></tr></table></td></tr>', $output);
56
    $output = preg_replace('#<tr valign="baseline"><td[ ]{0,1}><b>(.*?)</b>#', '<tr><td class="row1" nowrap="nowrap">\1', $output);
57
    $output = preg_replace('#<td align="(center|left)">#', '<td class="row2">', $output);
58
    $output = preg_replace('#<td>#', '<td class="row2">', $output);
59
    $output = preg_replace('#valign="middle"#', '', $output);
60
    $output = preg_replace('#<tr >#', '<tr>', $output);
61
    $output = preg_replace('#<hr(.*?)>#', '', $output);
62
    $output = preg_replace('#<h1 align="center">#i', '<h1>', $output);
63
    $output = preg_replace('#<h2 align="center">#i', '<h2>', $output);
64
    break;
65
  case 'new':
66
    $output = preg_replace('#<table#', '<table class="table2"', $output[1][0]);
67
    $output = preg_replace('#(\w),(\w)#', '\1, \2', $output);
68
    $output = preg_replace('#border="0" cellpadding="3" width="600"#', 'border="0" cellspacing="1" cellpadding="2" width="95%"', $output);
69
    $output = preg_replace('#<tr class="v"><td>(.*?<a .*?</a>)(.*?)</td></tr>#s', '<tr class="throw"><td><table width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td>\2</td><td>\1</td></tr></table></td></tr>', $output);
70
    $output = preg_replace('#<td>#', '<td style="background-color: #444444;text-align:center;">', $output);
71
	$output = preg_replace('#<th>#', '<th class="throw">', $output);
72
    $output = preg_replace('#class="e"#', 'class="row1"', $output);
73
    $output = preg_replace('#class="v"#', 'class="row2"', $output);
74
    $output = preg_replace('# class="h"#', '', $output);
75
    $output = preg_replace('#<hr />#', '', $output);
76
    preg_match_all('#<div class="center">(.*)</div>#siU', $output, $output); 
77
    $output = $output[1][0];
78
    break;
79
}
80
$template->assign_var('ADMIN_CONTENT',$output);
81
 
82
?>