View of /mambo/trunk/administrator/components/com_admin/admin.admin.html.php
Parent Directory
|
Revision Log
Revision 1 -
(download)
(annotate)
Tue Dec 13 03:45:47 2005 UTC (7 years, 5 months ago) by root
File size: 14405 byte(s)
Tue Dec 13 03:45:47 2005 UTC (7 years, 5 months ago) by root
File size: 14405 byte(s)
Initial repository layout
<?php /** * @version $Id: admin.admin.html.php,v 1.3 2005/11/08 10:26:19 eliasan Exp $ * @package Mambo * @subpackage Admin * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); /** * @package Mambo * @subpackage Admin */ class HTML_admin_misc { /** * Control panel */ function controlPanel() { global $mosConfig_absolute_path, $mainframe; ?> <table class="adminheading" border="0"> <tr> <th class="cpanel"> Home </th> </tr> </table> <table width="100%" class="adminheading"> <tr> <? if($_SESSION['simple_editing'] == 'on' || ($_SESSION['simple_editing'] == '')) { $_SESSION['simple_editing'] = 'on'; ?> <td align="left" width="20%"> </td><td align="left" ><a class="selected" href="index2.php?option=simple_mode" title="Simple Mode (selected)">Simple Mode</a> / <a class="unselected" href="index2.php?option=advanced_mode" title="Advanced Mode (unselected)">Advanced Mode</a></td> <?}else{?> <td align="left" width="20%"> </td><td align="left" ><a class="unselected"href="index2.php?option=simple_mode" title="Simple Mode (unselected)" >Simple Mode</a> / <a class="selected" href="index2.php?option=advanced_mode" title="Advanced Mode (selected)">Advanced Mode</a></td> <?}?> </tr> </table> <?php $path = $mosConfig_absolute_path . '/administrator/templates/' . $mainframe->getTemplate() . '/cpanel.php'; if (file_exists( $path )) { require $path; } else { echo '<br />'; mosLoadAdminModules( 'cpanel', 1 ); } } function get_php_setting($val) { $r = (ini_get($val) == '1' ? 1 : 0); return $r ? 'ON' : 'OFF'; } function get_server_software() { if (isset($_SERVER['SERVER_SOFTWARE'])) { return $_SERVER['SERVER_SOFTWARE']; } else if (($sf = getenv('SERVER_SOFTWARE'))) { return $sf; } else { return 'n/a'; } } function system_info( $version ) { global $mosConfig_absolute_path, $database; //$tab = mosGetParam( $_REQUEST, 'tab', 'tab1' ); $width = 400; // width of 100% $tabs = new mosTabs(0); ?> <table class="adminheading"> <tr> <th class="info"> Information </th> </tr> </table> <?php $tabs->startPane("sysinfo"); $tabs->startTab("System Info","system-page"); ?> <table class="adminform"> <tr> <th colspan="2"> System Information </th> </tr> <tr> <td valign="top" width="250"> <b> PHP built On: </b> </td> <td> <?php echo php_uname(); ?> </td> </tr> <tr> <td> <b> Database Version: </b> </td> <td> <?php echo mysql_get_server_info(); ?> </td> </tr> <tr> <td> <b> PHP Version: </b> </td> <td> <?php echo phpversion(); ?> </td> </tr> <tr> <td> <b> Web Server: </b> </td> <td> <?php echo HTML_admin_misc::get_server_software(); ?> </td> </tr> <tr> <td> <b> WebServer to PHP interface: </b> </td> <td> <?php echo php_sapi_name(); ?> </td> </tr> <tr> <td> <b> Mambo Version: </b> </td> <td> <?php echo $version; ?> </td> </tr> <tr> <td> <b> User Agent: </b> </td> <td> <?php echo phpversion() <= "4.2.1" ? getenv( "HTTP_USER_AGENT" ) : $_SERVER['HTTP_USER_AGENT'];?> </td> </tr> <tr> <td valign="top"> <b> Relevant PHP Settings: </b> </td> <td> <table cellspacing="1" cellpadding="1" border="0"> <tr> <td> Safe Mode: </td> <td> <?php echo HTML_admin_misc::get_php_setting('safe_mode'); ?> </td> </tr> <tr> <td> Open basedir: </td> <td> <?php echo (($ob = ini_get('open_basedir')) ? $ob : 'none'); ?> </td> </tr> <tr> <td> Display Errors: </td> <td> <?php echo HTML_admin_misc::get_php_setting('display_errors'); ?> </td> </tr> <tr> <td> Short Open Tags: </td> <td> <?php echo HTML_admin_misc::get_php_setting('short_open_tag'); ?> </td> </tr> <tr> <td> File Uploads: </td> <td> <?php echo HTML_admin_misc::get_php_setting('file_uploads'); ?> </td> </tr> <tr> <td> Magic Quotes: </td> <td> <?php echo HTML_admin_misc::get_php_setting('magic_quotes_gpc'); ?> </td> </tr> <tr> <td> Register Globals: </td> <td> <?php echo HTML_admin_misc::get_php_setting('register_globals'); ?> </td> </tr> <tr> <td> Output Buffering: </td> <td> <?php echo HTML_admin_misc::get_php_setting('output_buffering'); ?> </td> </tr> <tr> <td> Session save path: </td> <td> <?php echo (($sp=ini_get('session.save_path'))?$sp:'none'); ?> </td> </tr> <tr> <td> Session auto start: </td> <td> <?php echo intval( ini_get( 'session.auto_start' ) ); ?> </td> </tr> <tr> <td> XML enabled: </td> <td> <?php echo extension_loaded('xml')?'Yes':'No'; ?> </td> </tr> <tr> <td> Zlib enabled: </td> <td> <?php echo extension_loaded('zlib')?'Yes':'No'; ?> </td> </tr> <tr> <td> Disabled Functions: </td> <td> <?php echo (($df=ini_get('disable_functions'))?$df:'none'); ?> </td> </tr> <?php $query = "SELECT name FROM #__mambots" . "\nWHERE folder='editors' AND published='1'" . "\nLIMIT 1"; $database->setQuery( $query ); $editor = $database->loadResult(); ?> <tr> <td> WYSIWYG Editor: </td> <td> <?php echo $editor; ?> </td> </tr> </table> </td> </tr> <tr> <td valign="top"> <b> Configuration File: </b> </td> <td> <?php $cf = file( $mosConfig_absolute_path . '/configuration.php' ); foreach ($cf as $k=>$v) { if (eregi( 'mosConfig_host', $v)) { $cf[$k] = '$mosConfig_host = \'xxxxxx\''; } else if (eregi( 'mosConfig_user', $v)) { $cf[$k] = '$mosConfig_user = \'xxxxxx\''; } else if (eregi( 'mosConfig_password', $v)) { $cf[$k] = '$mosConfig_password = \'xxxxxx\''; } else if (eregi( 'mosConfig_db ', $v)) { $cf[$k] = '$mosConfig_db = \'xxxxxx\''; } else if (eregi( '<?php', $v)) { $cf[$k] = '<?php'; } } echo implode( "<br />", $cf ); ?> </td> </tr> </table> <?php $tabs->endTab(); $tabs->startTab("PHP Info","php-page"); ?> <table class="adminform"> <tr> <th colspan="2"> PHP Information </th> </tr> <tr> <td> <?php ob_start(); phpinfo(INFO_GENERAL | INFO_CONFIGURATION | INFO_MODULES); $phpinfo = ob_get_contents(); ob_end_clean(); preg_match_all('#<body[^>]*>(.*)</body>#siU', $phpinfo, $output); $output = preg_replace('#<table#', '<table class="adminlist" align="center"', $output[1][0]); $output = preg_replace('#(\w),(\w)#', '\1, \2', $output); $output = preg_replace('#border="0" cellpadding="3" width="600"#', 'border="0" cellspacing="1" cellpadding="4" width="95%"', $output); $output = preg_replace('#<hr />#', '', $output); echo $output; ?> </td> </tr> </table> <?php $tabs->endTab(); $tabs->startTab('Permissions','perms'); ?> <table class="adminform"> <tr> <th colspan="2"> Directory Permissions</th> </tr> <tr> <td> <strong>For all Mambo functions and features to work ALL of the following directories should be writeable:</strong> <?php mosHTML::writableCell( 'administrator/backups' ); mosHTML::writableCell( 'administrator/components' ); mosHTML::writableCell( 'administrator/modules' ); mosHTML::writableCell( 'administrator/templates' ); mosHTML::writableCell( 'cache' ); mosHTML::writableCell( 'components' ); mosHTML::writableCell( 'images' ); mosHTML::writableCell( 'images/banners' ); mosHTML::writableCell( 'images/stories' ); mosHTML::writableCell( 'language' ); mosHTML::writableCell( 'mambots' ); mosHTML::writableCell( 'mambots/content' ); mosHTML::writableCell( 'mambots/search' ); mosHTML::writableCell( 'media' ); mosHTML::writableCell( 'modules' ); mosHTML::writableCell( 'templates' ); ?> </td> </tr> </table> <?php $tabs->endTab(); $tabs->endPane(); ?> <?php } function ListComponents() { mosLoadAdminModule( 'components' ); } /** * Display Help Page */ function help() { global $mosConfig_live_site; $helpurl = mosGetParam( $GLOBALS, 'mosConfig_helpurl', '' ); $fullhelpurl = $helpurl . '/index2.php?option=com_content&task=findkey&pop=1&keyref='; $helpsearch = mosGetParam( $_REQUEST, 'helpsearch', '' ); $page = mosGetParam( $_REQUEST, 'page', '453.mambo.whatsnew.html' ); $toc = getHelpToc( $helpsearch ); if (!eregi( '\.html$', $page )) { $page .= '.xml'; } ?> <style type="text/css"> .helpIndex { border: 0px; width: 95%; height: 100%; padding: 0px 5px 0px 10px; overflow: auto; } .helpFrame { border-left: 0px solid #222; border-right: none; border-top: none; border-bottom: none; width: 100%; height: 700px; padding: 0px 5px 0px 10px; } </style> <form name="adminForm"> <table class="adminform" border="1"> <tr> <th colspan="2" class="title"> Help </th> </tr> <tr> <td colspan="2"> <table width="100%"> <tr> <td> <strong>Search:</strong> <input class="text_area" type="hidden" name="option" value="com_admin" /> <input type="text" name="helpsearch" value="<?php echo $helpsearch;?>" class="inputbox" /> <input type="submit" value="Go" class="button" /> <input type="button" value="Clear Results" class="button" onclick="f=document.adminForm;f.helpsearch.value='';f.submit()" /> </td> <td style="text-align:right"> <?php if ($helpurl) { ?> <a href="<?php echo $fullhelpurl;?>453.mambo.glossary" target="helpFrame"> Glossary</a> | <a href="<?php echo $fullhelpurl;?>453.mambo.credits" target="helpFrame"> Credits</a> | <a href="<?php echo $fullhelpurl;?>453.mambo.support" target="helpFrame"> Support</a> <?php } else { ?> <a href="<?php echo $mosConfig_live_site;?>/help/453.mambo.glossary.html" target="helpFrame"> Glossary</a> | <a href="<?php echo $mosConfig_live_site;?>/help/453.mambo.credits.html" target="helpFrame"> Credits</a> | <a href="<?php echo $mosConfig_live_site;?>/help/453.mambo.support.html" target="helpFrame"> Support</a> <?php } ?> | <a href="http://www.gnu.org/copyleft/gpl.html" target="helpFrame"> License</a> | <a href="http://help.mamboserver.com" target="_blank"> help.mamboserver.com</a> | <a href="<?php echo $mosConfig_live_site;?>/administrator/index2.php?option=com_admin&task=sysinfo&no_html=1" target="helpFrame"> System Info</a> </td> </tr> </table> </td> </tr> <tr valign="top"> <td width="20%" valign="top"> <strong>Index</strong> <div class="helpIndex"> <?php foreach ($toc as $k=>$v) { if ($helpurl) { echo '<br /><a href="' . $fullhelpurl . urlencode( $k ) . '" target="helpFrame">' . $v . '</a>'; } else { echo '<br /><a href="' . $mosConfig_live_site . '/help/' . $k . '" target="helpFrame">' . $v . '</a>'; } } ?> </div> </td> <td valign="top"> <iframe name="helpFrame" src="<?php echo $mosConfig_live_site . '/help/' . $page;?>" class="helpFrame" frameborder="0" /></iframe> </td> </tr> </table> <input type="hidden" name="task" value="help" /> </form> <?php } /** * Preview site */ function preview( $tp=0 ) { global $mosConfig_live_site; $tp = intval( $tp ); ?> <style type="text/css"> .previewFrame { border: none; width: 95%; height: 600px; padding: 0px 5px 0px 10px; } </style> <table class="adminform"> <tr> <th width="50%" class="title"> Site Preview </th> <th width="50%" style="text-align:right"> <a href="<?php echo $mosConfig_live_site . '/index.php?tp=' . $tp;?>" target="_blank"> Open in new window </a> </th> </tr> <tr> <td width="100%" valign="top" colspan="2"> <iframe name="previewFrame" src="<?php echo $mosConfig_live_site . '/index.php?tp=' . $tp;?>" class="previewFrame" /></iframe> </td> </tr> </table> <?php } } /** * Compiles the help table of contents * @param string A specific keyword on which to filter the resulting list */ function getHelpTOC( $helpsearch ) { global $mosConfig_absolute_path; $helpurl = mosGetParam( $GLOBALS, 'mosConfig_helpurl', '' ); $files = mosReadDirectory( $mosConfig_absolute_path . '/help/', '\.xml$|\.html$' ); require_once( $mosConfig_absolute_path . '/includes/domit/xml_domit_lite_include.php' ); $toc = array(); foreach ($files as $file) { $buffer = file_get_contents( $mosConfig_absolute_path . '/help/' . $file ); if (preg_match( '#<title>(.*?)</title>#', $buffer, $m )) { $title = trim( $m[1] ); if ($title) { if ($helpurl) { // strip the extension $file = preg_replace( '#\.xml$|\.html$#', '', $file ); } if ($helpsearch) { if (strpos( strip_tags( $buffer ), $helpsearch ) !== false) { $toc[$file] = $title; } } else { $toc[$file] = $title; } } } /* $xmlDoc =& new DOMIT_Lite_Document(); $xmlDoc->resolveErrors( true ); echo "<br>$file "; if ($xmlDoc->loadXML( $mosConfig_absolute_path . '/help/' . $file, false, true )) { if (eregi( '\.html$', $file )) { // html file $elem = $xmlDoc->getElementsByPath( 'head/title', 1 ); } else { // xml file $elem = $xmlDoc->getElementsByPath( 'title', 1 ); } if ($elem) { if ($helpsearch) { if (strpos( $xmlDoc->getText(), $helpsearch ) !== false) { $toc[$file] = $elem->getText(); } } else { $toc[$file] = $elem->getText(); } } } else { echo $xmlDoc->getErrorString(); } */ } asort( $toc ); return $toc; } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

