english.php
上传用户:stephen_wu
上传日期:2008-07-05
资源大小:1757k
文件大小:1k
- <?php
- /*************************************************************
- * Joomla Community Builder Backwards compatibility file: RC2 only! will be removed!
- * @version $Id: english.php 41 2006-01-11 23:36:58Z beat $
- * @package Community Builder
- * @subpackage comprofiler.class.php
- * @author JoomlaJoe and Beat
- * @copyright (C) JoomlaJoe and Beat, www.joomlapolis.com
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU/GPL version 2
- */
- if ( ! ( defined( '_VALID_CB' ) || defined( '_JEXEC' ) || defined( '_VALID_MOS' ) ) ) { die( 'Direct Access to this location is not allowed.' ); }
- global $mainframe; // KEEP $mainframe on purpose as this file can be included from elsewhere.
- $UElanguagePath = $mainframe->getCfg( 'absolute_path' ).'/components/com_comprofiler/plugin/language';
- if ( file_exists( $UElanguagePath.'/' . $mainframe->getCfg( 'lang' ) . '/' . $mainframe->getCfg( 'lang' ) . '.php' ) ) {
- include_once( $UElanguagePath . '/' . $mainframe->getCfg( 'lang' ) . '/' . $mainframe->getCfg( 'lang' ) . '.php' );
- } else {
- include_once( $UElanguagePath . '/default_language/default_language.php' );
- }
- ?>