XPressME Integration Kit

Trac

source: trunk/xpressme_integration_kit/admin/index.php @ 353

Last change on this file since 353 was 353, checked in by toemon, 15 years ago

libxml2のバグ回避の実装 fixes #195
およびシステム情報にlibxmlのバージョンを表示するようにした。

File size: 22.5 KB
Line 
1<?php
2// $Id: xoops_version.php,v 1.8 2005/06/03 01:35:02 phppp Exp $
3//  ------------------------------------------------------------------------ //
4//                XOOPS - PHP Content Management System                      //
5//                    Copyright (c) 2000 XOOPS.org                           //
6//                       <http://www.xoops.org/>                             //
7//  ------------------------------------------------------------------------ //
8//  This program is free software; you can redistribute it and/or modify     //
9//  it under the terms of the GNU General Public License as published by     //
10//  the Free Software Foundation; either version 2 of the License, or        //
11//  (at your option) any later version.                                      //
12//                                                                           //
13//  You may not change or alter any portion of this comment or credits       //
14//  of supporting developers from this source code or any supporting         //
15//  source code which is considered copyrighted (c) material of the          //
16//  original comment or credit authors.                                      //
17//                                                                           //
18//  This program is distributed in the hope that it will be useful,          //
19//  but WITHOUT ANY WARRANTY; without even the implied warranty of           //
20//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            //
21//  GNU General Public License for more details.                             //
22//                                                                           //
23//  You should have received a copy of the GNU General Public License        //
24//  along with this program; if not, write to the Free Software              //
25//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA //
26//  ------------------------------------------------------------------------ //
27// Author: phppp (D.J.)                                                      //
28// URL: http://xoopsforge.com, http://xoops.org.cn                           //
29// ------------------------------------------------------------------------- //
30//include_once 'cp_functions.php';
31
32function admin_check_user_meta_prefix($is_report = false){
33        global $xoopsModule;
34        $xoopsDB =& Database::getInstance();
35       
36        $mydirname = basename(dirname(dirname(__FILE__)));
37        $my_dirpath = dirname(dirname(__FILE__));
38        $wp_prefix_only = $mydirname;
39        if ($wp_prefix_only == 'wordpress') $wp_prefix_only ='wp';
40        $db_prefix = $xoopsDB->prefix($wp_prefix_only);
41
42        $usermeta_tbl = $db_prefix . '_usermeta';       
43        $meta_key_pattern = '_' . $wp_prefix_only . '_';
44
45        $sql = "SELECT count(umeta_id) as data_count ,meta_key FROM $usermeta_tbl GROUP BY meta_key HAVING meta_key LIKE '%" . $meta_key_pattern ."%'" ;
46        $res =  $xoopsDB->query($sql, 0, 0);
47       
48        if ($res === false){
49                $check_str = _AM_XP2_USER_META_NONE . "<br />\n";
50        } else {
51                $error =false;
52                $check_str = '';
53                while($row = $xoopsDB->fetchArray($res)){
54                        $data_count  = $row['data_count'];
55                        $meta_key = $row['meta_key'];
56                        if ( !preg_match('/^'.$db_prefix. '_.*/',$meta_key , $maches)){
57                                $check_str .= sprintf(_AM_XP2_USER_META_ERR , $meta_key,$data_count) ."<br /> \n";
58                                $error = true;
59                        }
60                }
61                if (!$error)
62                        $check_str = _AM_XP2_USER_META_OK ;
63        }
64        if ($is_report) {
65                echo "******** "  . _AM_XP2_USER_META_KEY . "********" . "<br />\n";
66                echo $check_str . "<br />\n<br />\n";
67        } else {
68                echo "<fieldset><legend style='font-weight: bold; color: #900;'>" . _AM_XP2_USER_META_KEY . "</legend>";
69                echo "<div style='padding: 8px;'>";
70                echo $check_str;
71                echo "</div>";
72                echo "</fieldset>";
73        }
74
75}
76
77function get_xpress_plugin_data( $plugin_file, $markup = true, $translate = true ) {
78        // We don't need to write to the file, so just open for reading.
79        $fp = fopen($plugin_file, 'r');
80
81        // Pull only the first 8kiB of the file in.
82        $plugin_data = fread( $fp, 8192 );
83
84        // PHP will close file handle, but we are good citizens.
85        fclose($fp);
86
87        preg_match( '|Plugin Name:(.*)$|mi', $plugin_data, $name );
88        preg_match( '|Plugin URI:(.*)$|mi', $plugin_data, $uri );
89        preg_match( '|Version:(.*)|i', $plugin_data, $version );
90        preg_match( '|Description:(.*)$|mi', $plugin_data, $description );
91        preg_match( '|Author:(.*)$|mi', $plugin_data, $author_name );
92        preg_match( '|Author URI:(.*)$|mi', $plugin_data, $author_uri );
93        preg_match( '|Text Domain:(.*)$|mi', $plugin_data, $text_domain );
94        preg_match( '|Domain Path:(.*)$|mi', $plugin_data, $domain_path );
95
96        foreach ( array( 'name', 'uri', 'version', 'description', 'author_name', 'author_uri', 'text_domain', 'domain_path' ) as $field ) {
97                if ( !empty( ${$field} ) )
98                        ${$field} = trim(${$field}[1]);
99                else
100                        ${$field} = '';
101        }
102
103        $plugin_data = array(
104                                'Name' => $name, 'Title' => $name, 'PluginURI' => $uri, 'Description' => $description,
105                                'Author' => $author_name, 'AuthorURI' => $author_uri, 'Version' => $version,
106                                'TextDomain' => $text_domain, 'DomainPath' => $domain_path
107                                );
108//      if ( $markup || $translate )
109//              $plugin_data = _get_plugin_data_markup_translate($plugin_data, $markup, $translate);
110        return $plugin_data;
111}
112
113
114function get_xpress_active_plugin_list($before_str = '')
115{
116        global $xoopsModule;
117        $xoopsDB =& Database::getInstance();
118       
119        $mydirname = basename(dirname(dirname(__FILE__)));
120        $my_dirpath = dirname(dirname(__FILE__));
121        $prefix = $mydirname;
122        if ($prefix == 'wordpress') $prefix ='wp';
123        $wp_prefix = $xoopsDB->prefix($prefix);
124
125        $option_table = $wp_prefix . '_options';
126       
127        $sql = "SELECT option_value FROM $option_table WHERE option_name = 'active_plugins'";
128        $res =  $xoopsDB->query($sql, 0, 0);
129        if ($res === false){
130            return ;
131        } else {
132                $row = $xoopsDB->fetchArray($res);
133                $active_plugins = @unserialize($row['option_value']);
134                $output = '';
135                foreach($active_plugins as $active_plugin_path){
136                        $file_name =  $my_dirpath . '/wp-content/plugins/' . $active_plugin_path;
137                        $active_plugin = get_xpress_plugin_data($file_name);
138                        $output .= $before_str . $active_plugin['Name'] . ':   Version ' . $active_plugin['Version'] . ':  (' .$active_plugin['PluginURI'] . ')<br />';
139                }
140               
141               
142                return $output;
143        }
144
145       
146}
147
148function xpress_active_plugin_list($is_report = false)
149{
150        if ($is_report) {
151                echo "******** "  . _AM_XP2_PLUGIN . "********" . "<br />\n";
152                echo get_xpress_active_plugin_list('') . "<br />\n";
153        } else {
154                echo "<fieldset><legend style='font-weight: bold; color: #900;'>" . _AM_XP2_PLUGIN . "</legend>";
155                echo "<div style='padding: 8px;'>";
156                echo get_xpress_active_plugin_list();
157                echo "</div>";
158                echo "</fieldset>";
159        }
160}
161
162function xpress_sys_info($is_report = false)
163{
164        global $xoopsModule;
165        include(dirname(__FILE__) . '/../wp-includes/version.php');
166       
167        if ($is_report) {
168                echo "******** "  . _AM_XP2_SYSTEM_INFO . "********" . "<br />\n";
169                echo "SERVER:  ". $_SERVER['SERVER_SOFTWARE']. "<br />\n";
170                echo "PHP Version:   " . phpversion() . "<br />\n";
171                echo 'libxml Version:  ' . LIBXML_DOTTED_VERSION . "<br />\n";
172                echo "MySQL Version:   " . mysql_get_server_info() . "</text><br />";
173                echo "XOOPS Version:   " . XOOPS_VERSION . "</text><br />";
174                echo "XPressME Version:   " . $xoopsModule->getInfo('version') . ' ' . $xoopsModule->getInfo('codename') . "<br />\n";
175                echo "WordPress Version:   " . $wp_version . "<br />\n";
176                echo "WP DB Version:   " . $wp_db_version . "<br />\n";
177                echo "<br />\n";
178                echo "safemode:   " ;
179                echo ( ini_get( 'safe_mode' ) ) ? "ON" : "OFF";
180                echo "<br />\n";
181                echo "register_globals:   " ;
182                echo ( ini_get( 'register_globals' )) ? "ON" : "OFF" ;
183                echo "<br />\n";
184                echo "magic_quotes_gpc:   " ;
185                echo ( ini_get( 'magic_quotes_gpc' )) ? "ON" : "OFF";
186                echo "<br />\n";
187                echo "XML extension:   " ;
188                echo ( extension_loaded( 'xml' )) ? "ON" : "OFF";
189                echo "<br />\n";
190                echo "memory_limit:   " ;
191                echo  ini_get( 'memory_limit' );
192                echo "<br />\n";
193                echo "post_max_size:   " ;
194                echo  ini_get( 'post_max_size' );
195                echo "<br />\n";
196                echo "upload_max_filesize:   " ;
197                echo  ini_get( 'upload_max_filesize' );
198                echo "<br />\n";
199                echo "display_errors:   " ;
200                echo ( ini_get( 'display_errors' )) ? "ON" : "OFF";
201                echo "<br />\n";
202                echo "MB extension:   " ;
203                echo ( extension_loaded( 'mbstring' )) ? "ON" : "OFF";
204                echo "<br />\n";
205                echo "mbstring.language:   " ;
206                echo  ini_get( 'mbstring.language' );
207                echo "<br />\n";
208                echo "mbstring.encoding_translation:   " ;
209                echo  ( ini_get( 'mbstring.encoding_translation' )) ? "ON" : "OFF";
210                echo "<br />\n";
211                echo "mbstring.internal_encoding:   " ;
212                echo  ini_get( 'mbstring.internal_encoding' );
213                echo "<br />\n";
214                echo "mbstring.http_input:   " ;
215                echo  ini_get( 'mbstring.http_input' );
216                echo "<br />\n";
217                echo "mbstring.http_output:   " ;
218                echo  ini_get( 'mbstring.http_output' );
219                echo "<br />\n";
220                echo "mbstring.detect_order:   " ;
221                echo  ini_get( 'mbstring.detect_order' );
222                echo "<br />\n";
223                echo "mbstring.substitute_character:   " ;
224                echo  ini_get( 'mbstring.substitute_character' );
225                echo "<br />\n";
226                echo "mbstring.func_overload:   " ;
227                echo  ( ini_get( 'mbstring.func_overload' )) ? "ON" : "OFF";
228                echo "<br />\n";
229                echo "<br />\n";
230        } else {
231                echo "<fieldset><legend style='font-weight: bold; color: #900;'>" . _AM_XP2_SYSTEM_INFO . "</legend>";
232                echo "<div style='padding: 8px;'>";
233                echo "<label>" . "<strong>SERVER:</strong>" . ":</label><text>" . $_SERVER['SERVER_SOFTWARE'] . "</text><br />";
234                echo "<label>" . "<strong>PHP Version:</strong>" . ":</label><text>" . phpversion() . "</text><br />";
235                echo "<label>" . "<strong>libxml Version:</strong>" . ":</label><text>" . LIBXML_DOTTED_VERSION . "</text><br />";
236                echo "<label>" . "<strong>MySQL Version:</strong>" . ":</label><text>" . mysql_get_server_info() . "</text><br />";
237                echo "<label>" . "<strong>XOOPS Version:</strong>" . ":</label><text>" . XOOPS_VERSION . "</text><br />";
238                echo "<label>" . "<strong>XPressME Version:</strong>" . ":</label><text>" . $xoopsModule->getInfo('version') . ' ' . $xoopsModule->getInfo('codename') . "</text><br />";
239                echo "<label>" . "<strong>WordPress Version:</strong>" . ":</label><text>" . $wp_version . "</text><br />";
240                echo "<label>" . "<strong>WP DB Version:</strong>" . ":</label><text>" . $wp_db_version . "</text><br />";
241
242                echo "</div>";
243                echo "<div style='padding: 8px;'>";
244                echo "<label>safemode:</label><text>";
245                echo ( ini_get( 'safe_mode' ) ) ? "ON" : "OFF";
246                echo "</text><br />";
247                echo "<label>register_globals:</label><text>";
248                echo ( ini_get( 'register_globals' )) ? "ON" : "OFF";
249                echo "</text><br />";
250                echo "<label>magic_quotes_gpc:</label><text>";
251                echo ( ini_get( 'magic_quotes_gpc' )) ? "ON" : "OFF";
252                echo "</text><br />";
253                echo "<label>XML extension:</label><text>";
254                echo ( extension_loaded( 'xml' )) ? "ON" : "OFF";
255                echo "</text><br />";
256                echo "<label>memory_limit:</label><text>";
257                echo  ini_get( 'memory_limit' );
258                echo "</text><br />";
259                echo "<label>post_max_size:</label><text>";
260                echo  ini_get( 'post_max_size' );
261                echo "</text><br />";
262                echo "<label>upload_max_filesize:</label><text>";
263                echo  ini_get( 'upload_max_filesize' );
264                echo "</text><br />";
265                echo "<label>display_errors:</label><text>";
266                echo ( ini_get( 'display_errors' )) ? "ON" : "OFF";
267                echo "</text><br />";
268                echo "<label>MB extension:</label><text>";
269                echo ( extension_loaded( 'mbstring' )) ? "ON" : "OFF";
270                echo "</text><br />";
271                echo "<label>mbstring.language:</label><text>";
272                echo  ini_get( 'mbstring.language' );
273                echo "</text><br />";
274                echo "<label>mbstring.encoding_translation:</label><text>";
275                echo  ( ini_get( 'mbstring.encoding_translation' )) ? "ON" : "OFF";
276                echo "</text><br />";
277                echo "<label>mbstring.internal_encoding:</label><text>";
278                echo  ini_get( 'mbstring.internal_encoding' );
279                echo "</text><br />";
280                echo "<label>mbstring.http_input:</label><text>";
281                echo  ini_get( 'mbstring.http_input' );
282                echo "</text><br />";
283                echo "<label>mbstring.http_output:</label><text>";
284                echo  ini_get( 'mbstring.http_output' );
285                echo "</text><br />";
286                echo "<label>mbstring.detect_order:</label><text>";
287                echo  ini_get( 'mbstring.detect_order' );
288                echo "</text><br />";
289                echo "<label>mbstring.substitute_character:</label><text>";
290                echo  ini_get( 'mbstring.substitute_character' );
291                echo "</text><br />";
292                echo "<label>mbstring.func_overload:</label><text>";
293                echo  ( ini_get( 'mbstring.func_overload' )) ? "ON" : "OFF";
294                echo "</text><br />";
295                echo "</div>";
296                echo "</fieldset><br />";
297        }
298}
299
300function xpress_config_from_xoops_view($is_report = false)
301{
302        require_once dirname(dirname( __FILE__ )).'/class/config_from_xoops.class.php' ;
303        $xoops_config = new ConfigFromXoops;
304        if ($is_report) {
305                echo "******** "  . _AM_XP2_XOOPS_CONFIG_INFO . "********" . "<br />\n";
306                echo 'XOOPS_ROOT_PATH:  ' ;
307                if(XOOPS_ROOT_PATH !== $xoops_config->xoops_root_path)
308                        echo 'ERROR ';
309                else
310                        echo 'OK ';     
311                echo "<br />\n";
312
313                echo 'XOOPS_TRUST_PATH:  ' ;
314                if(XOOPS_TRUST_PATH !== $xoops_config->xoops_trust_path)
315                        echo 'ERROR ';
316                else
317                        echo 'OK ';     
318                echo "<br />\n";
319
320                echo 'XOOPS_URL:  ' ;
321                if(XOOPS_URL !== $xoops_config->xoops_url)
322                        echo 'ERROR ';
323                else
324                        echo 'OK ';     
325                echo "<br />\n";
326
327                if (defined('XOOPS_SALT')){
328                        echo 'XOOPS_SALT:  ' ;
329                        if(XOOPS_SALT !== $xoops_config->xoops_salt)
330                                echo 'ERROR ';
331                        else
332                                echo 'OK ';     
333                        echo "<br />\n";
334                }
335
336                if (defined('XOOPS_DB_SALT')){
337                        echo 'XOOPS_DB_SALT:  ' ;
338                        if(XOOPS_DB_SALT !== $xoops_config->xoops_db_salt)
339                                echo 'ERROR ';
340                        else
341                                echo 'OK ';     
342                        echo "<br />\n";
343                }
344
345                echo 'XOOPS_DB_HOST:  ' ;
346                if(XOOPS_DB_HOST !== $xoops_config->xoops_db_host)
347                        echo 'ERROR ';
348                else
349                        echo 'OK ';     
350                echo "<br />\n";
351
352                echo 'XOOPS_DB_USER:  ' ;
353                if(XOOPS_DB_USER !== $xoops_config->xoops_db_user)
354                        echo 'ERROR ';
355                else
356                        echo 'OK ';     
357                echo "<br />\n";
358
359                echo 'XOOPS_DB_PASS:  ' ;
360                if(XOOPS_DB_PASS !== $xoops_config->xoops_db_pass)
361                        echo 'ERROR ';
362                else
363                        echo 'OK ';     
364                echo "<br />\n";
365
366                echo 'XOOPS_DB_NAME:  ' ;
367                if(XOOPS_DB_NAME !== $xoops_config->xoops_db_name)
368                        echo 'ERROR ';
369                else
370                        echo 'OK ';     
371                echo "<br />\n";
372
373                echo 'XOOPS_DB_PREFIX:  ' ;
374                if(XOOPS_DB_PREFIX !== $xoops_config->xoops_db_prefix)
375                        echo 'ERROR ';
376                else
377                        echo 'OK ';     
378                echo "<br />\n";
379                echo "<br />\n";
380
381        } else {
382                echo "<fieldset><legend style='font-weight: bold; color: #900;'>" . _AM_XP2_XOOPS_CONFIG_INFO . "</legend>";
383                echo "<div style='padding: 8px;'>";
384                echo '<table width="400" cellspacing="1" cellpadding="1" border="1">';
385                echo '<tbody>';
386                echo '<tr>';
387                echo '<td>Define item</td>';
388                echo '<td>XOOPS setting value</td>';
389                echo '<td>xoops_config get value</td>';
390                echo '</tr>';
391                echo '<tr>';
392                if(XOOPS_ROOT_PATH !== $xoops_config->xoops_root_path)
393                        echo '<td><strong><span style="color: rgb(255, 0, 0);">XOOPS_ROOT_PATH</span></strong></td>';
394                else
395                        echo '<td>XOOPS_ROOT_PATH</td>';       
396                echo '<td>' . XOOPS_ROOT_PATH . '</td>';
397                echo '<td>' . $xoops_config->xoops_root_path . '</td>';
398                echo '</tr>';
399
400                echo '<tr>';
401                if(XOOPS_TRUST_PATH !== $xoops_config->xoops_trust_path)
402                        echo '<td><strong><span style="color: rgb(255, 0, 0);">XOOPS_TRUST_PATH</span></strong></td>';
403                else
404                        echo '<td>XOOPS_TRUST_PATH</td>';       
405                echo '<td>' . XOOPS_TRUST_PATH . '</td>';
406                echo '<td>' . $xoops_config->xoops_trust_path . '</td>';
407                echo '</tr>';
408
409                echo '<tr>';
410                if(XOOPS_URL !== $xoops_config->xoops_url)
411                        echo '<td><strong><span style="color: rgb(255, 0, 0);">XOOPS_URL</span></strong></td>';
412                else
413                        echo '<td>XOOPS_URL</td>';     
414                echo '<td>' . XOOPS_URL . '</td>';
415                echo '<td>' . $xoops_config->xoops_url . '</td>';
416                echo '</tr>';
417
418                if (defined('XOOPS_SALT')){
419                        echo '<tr>';
420                        if(XOOPS_SALT !== $xoops_config->xoops_salt)
421                                echo '<td><strong><span style="color: rgb(255, 0, 0);">XOOPS_SALT</span></strong></td>';
422                        else
423                                echo '<td>XOOPS_SALT</td>';
424                        echo '<td>' . XOOPS_SALT . '</td>';
425                        echo '<td>' . $xoops_config->xoops_salt . '</td>';
426                        echo '</tr>';
427                }
428
429                if (defined('XOOPS_DB_SALT')){
430                        echo '<tr>';
431                        if(XOOPS_DB_SALT !== $xoops_config->xoops_db_salt)
432                                echo '<td><strong><span style="color: rgb(255, 0, 0);">XOOPS_DB_SALT</span></strong></td>';
433                        else
434                                echo '<td>XOOPS_DB_SALT</td>';
435                        echo '<td>' . XOOPS_DB_SALT . '</td>';
436                        echo '<td>' . $xoops_config->xoops_db_salt . '</td>';
437                        echo '</tr>';
438                }
439
440                echo '<tr>';
441                if(XOOPS_DB_HOST !== $xoops_config->xoops_db_host)
442                        echo '<td><strong><span style="color: rgb(255, 0, 0);">XOOPS_DB_HOST</span></strong></td>';
443                else
444                        echo '<td>XOOPS_DB_HOST</td>';
445                echo '<td>' . XOOPS_DB_HOST . '</td>';
446                echo '<td>' . $xoops_config->xoops_db_host . '</td>';
447                echo '</tr>';
448
449                echo '<tr>';
450                if(XOOPS_DB_USER !== $xoops_config->xoops_db_user)
451                        echo '<td><strong><span style="color: rgb(255, 0, 0);">XOOPS_DB_USER</span></strong></td>';
452                else
453                        echo '<td>XOOPS_DB_USER</td>';
454                echo '<td>' . XOOPS_DB_USER . '</td>';
455                echo '<td>' . $xoops_config->xoops_db_user . '</td>';
456                echo '</tr>';
457
458                echo '<tr>';
459                if(XOOPS_DB_PASS !== $xoops_config->xoops_db_pass)
460                        echo '<td><strong><span style="color: rgb(255, 0, 0);">XOOPS_DB_PASS</span></strong></td>';
461                else
462                        echo '<td>XOOPS_DB_PASS</td>';
463                echo '<td>' . XOOPS_DB_PASS . '</td>';
464                echo '<td>' . $xoops_config->xoops_db_pass . '</td>';
465                echo '</tr>';
466
467                echo '<tr>';
468                if(XOOPS_DB_NAME !== $xoops_config->xoops_db_name)
469                        echo '<td><strong><span style="color: rgb(255, 0, 0);">XOOPS_DB_NAME</span></strong></td>';
470                else
471                        echo '<td>XOOPS_DB_NAME</td>';
472                echo '<td>' . XOOPS_DB_NAME . '</td>';
473                echo '<td>' . $xoops_config->xoops_db_name . '</td>';
474                echo '</tr>';
475
476                echo '<tr>';
477                if(XOOPS_DB_PREFIX !== $xoops_config->xoops_db_prefix)
478                        echo '<td><strong><span style="color: rgb(255, 0, 0);">XOOPS_DB_PREFIX</span></strong></td>';
479                else
480                        echo '<td>XOOPS_DB_PREFIX</td>';
481                echo '<td>' . XOOPS_DB_PREFIX . '</td>';
482                echo '<td>' . $xoops_config->xoops_db_prefix . '</td>';
483                echo '</tr>';
484                echo '</tbody>';
485                echo '</table>';
486                echo "</div>";
487                echo "</fieldset><br />";
488        }
489}
490
491function xpress_state($is_report = false)
492{
493        global $xoopsModule;
494        include(dirname(__FILE__) . '/../wp-includes/version.php');
495
496        $xoopsDB =& Database::getInstance();
497       
498        $xp_prefix = $GLOBALS['xoopsModule']->getInfo('dirname');
499        if ($xp_prefix == 'wordpress'){
500                $xp_prefix = 'wp';
501        }
502
503        $prefix = $xoopsDB->prefix($xp_prefix . '_');
504        $sql = "SELECT COUNT(DISTINCT post_author) AS count_author, COUNT(*) AS count_article FROM ".$prefix . "posts WHERE post_type = 'post' AND (post_status = 'publish' OR post_status = 'private')";
505        $result = $xoopsDB->query($sql);
506        if($myrow = $xoopsDB->fetchArray($result)){
507                $count_article = $myrow["count_article"];
508                $count_author = $myrow["count_author"];
509        }
510
511        if ($wp_db_version < 6124){
512                $sql = "SELECT COUNT(*) AS count_category FROM ".$xoopsDB->prefix($xp_prefix . "_categories");
513        } else {
514                $sql = "SELECT COUNT(*) AS count_category FROM ".$xoopsDB->prefix($xp_prefix . "_term_taxonomy") . " WHERE taxonomy = 'category'";
515        }
516        $result = $xoopsDB->query($sql);
517        if($myrow = $xoopsDB->fetchArray($result)){
518                $count_category = $myrow["count_category"];
519        }
520
521        if ($is_report){
522                echo "******** " . _AM_XP2_STATS . "********" . "<br />\n";
523                echo _AM_XP2_CATEGORIES .":  ".@$count_category. "<br />\n";
524                echo _AM_XP2_ARTICLES .":  ". $count_article. "<br />\n";
525                echo _AM_XP2_AUTHORS .":  ". $count_author. "<br />\n";
526               
527        } else {
528                echo "<fieldset><legend style='font-weight: bold; color: #900;'>" . _AM_XP2_STATS . "</legend>";
529                echo "<div style='padding: 8px;'>";
530                echo "<label>" . _AM_XP2_CATEGORIES .":</label><text>".@$count_category;
531                echo "</text><br />";
532                echo "<label>" . _AM_XP2_ARTICLES .":</label><text>". $count_article;
533                echo "</text><br />";
534                echo "<label>" . _AM_XP2_AUTHORS .":</label><text>". $count_author;
535                echo "</text>";
536                echo "</div>";
537                echo "</fieldset>";
538        }
539}
540function xpress_block_state($is_report = false)
541{
542        require_once dirname(dirname( __FILE__ )).'/class/config_from_xoops.class.php' ;
543        $xoops_config = new ConfigFromXoops;
544       
545        include_once(dirname(dirname(__FILE__) ). '/class/check_blocks_class.php');
546        $xoops_block_check =& xoops_block_check::getInstance();
547        $xoops_block_check->check_blocks($xoops_config->module_name);
548        if ($is_report){
549                echo "******** " . _AM_XP2_BLOCK_STATS . "********" . "<br />\n";
550                echo $xoops_block_check->get_message();
551                echo "<br />\n";
552                echo "<br />\n";
553        } else {
554                echo "<fieldset><legend style='font-weight: bold; color: #900;'>" . _AM_XP2_BLOCK_STATS . "</legend>";
555                echo "<div style='padding: 8px;'>";
556                echo $xoops_block_check->get_message();
557                echo "</div>";
558                echo "</fieldset>";
559        }               
560}
561       
562$mydirname = basename( dirname( dirname( __FILE__ ) ) ) ;
563$mydirpath = dirname( dirname( __FILE__ ) ) ;
564//require_once($mydirpath.'/wp-config.php');
565       
566require_once '../../../include/cp_header.php' ;
567//require_once '../include/gtickets.php' ;
568//define( '_MYMENU_CONSTANT_IN_MODINFO' , '_MI_XP2_NAME' ) ;
569
570// branch for altsys
571if( defined( 'XOOPS_TRUST_PATH' ) && ! empty( $_GET['lib'] ) ) {
572
573        // common libs (eg. altsys)
574        $lib = preg_replace( '/[^a-zA-Z0-9_-]/' , '' , $_GET['lib'] ) ;
575        $page = preg_replace( '/[^a-zA-Z0-9_-]/' , '' , @$_GET['page'] ) ;
576       
577        if( file_exists( XOOPS_TRUST_PATH.'/libs/'.$lib.'/'.$page.'.php' ) ) {
578                include XOOPS_TRUST_PATH.'/libs/'.$lib.'/'.$page.'.php' ;
579        } else if( file_exists( XOOPS_TRUST_PATH.'/libs/'.$lib.'/index.php' ) ) {
580                include XOOPS_TRUST_PATH.'/libs/'.$lib.'/index.php' ;
581        } else {
582                die( 'wrong request' ) ;
583        }
584        exit ;
585}
586
587// beggining of Output
588xoops_cp_header();
589include( './mymenu.php' ) ;
590
591echo "
592        <style type=\"text/css\">
593        label,text {
594                display: block;
595                float: left;
596                margin-bottom: 2px;
597        }
598        label {
599                text-align: right;
600                width: 200px;
601                padding-right: 20px;
602        }
603        br {
604                clear: left;
605        }
606        </style>
607";
608
609if (!empty($_POST['submit_report'])) $report = true; else $report = false;
610xpress_sys_info($report);
611xpress_config_from_xoops_view($report);
612xpress_active_plugin_list($report);
613xpress_block_state($report);
614admin_check_user_meta_prefix($report);
615xpress_state($report);
616echo '<form method="POST">'."\n";
617echo '<input type="submit" name="submit_report" value="' . _AM_XP2_SYS_REPORT .' " />'.'&emsp;';
618echo '<input type="submit" name="submit_normal" value="' . _AM_XP2_SYS_NORMAL .' " />'."<br />\n";
619echo "</form>\n";
620
621xoops_cp_footer();
622
623       
624?>
Note: See TracBrowser for help on using the repository browser.